В моей сущности:
/**
* @ORM\ManyToMany(targetEntity="Productgroup", inversedBy="fields")
* @ORM\JoinColumn(name="productgroup", referencedColumnName="id")
*/
private $productgroup;
public function getProductgroup()
{
return $this->productgroup;
}
public function setProductgroup($productgroup): self
{
$this->productgroup = $productgroup;
return $this;
}
public function __construct()
{
$this->productgroup = new ArrayCollection();
}
В моем контроллере:
$group = $this->getDoctrine()->getRepository(class::fields)->findAll();
Вывод:
array:2 [▼
0 => Fields {#120842 ▼
-id: 3
-name: "cat"
-unique_id: "5a38c820ed"
-productgroup: PersistentCollection {#120846 ▼
-snapshot: array:1 [ …1]
-owner: Fields {#120842}
-association: array:20 [ …20]
-em: EntityManager {#114768 …11}
-backRefFieldName: "fields"
-typeClass: ClassMetadata {#119877 …}
-isDirty: false
#collection: ArrayCollection {#120847 ▼
-elements: array:1 [▼
0 => Productgroup {#120528 ▼
-id: 6
-name: "Animals"
-unique_id: "9e4ef1c46f"
-fields: PersistentCollection {#120739 ▶}
}
]
}
#initialized: true
}
-type: Type {#120923 ▶}
}
1 => Fields {#120924 ▼
-id: 5
-name: "horse"
-unique_id: "c3890b9287"
-productgroup: PersistentCollection {#120925 ▼
-snapshot: []
-owner: Fields {#120924}
-association: array:20 [ …20]
-em: EntityManager {#114768 …11}
-backRefFieldName: "fields"
-typeClass: ClassMetadata {#119877 …}
-isDirty: false
#collection: ArrayCollection {#120926 ▼
-elements: []
}
#initialized: false
}
-type: Type {#120927 ▶}
}
]
Я хочу отфильтровать сейчас все $group
выводить только те поля, которые не связаны с группой товаров с идентификатором 6
.Мой подход:
В моем контроллере:
$group = $this->getDoctrine()->getRepository(class:fields)->filterByColletion(6);
В моем репозитории:
public function filterByColletion($id)
{
return $this->createQueryBuilder('p')
->addSelect('f')
->from('App\Entity\Fields', 'f')
->leftJoin('f.productgroup', 'productgroup')
->andWhere('f.productgroup != 6')
->getQuery()
->execute();
}
Ошибка
Недопустимое выражение пути.Ожидается StateFieldPathExpression или SingleValuedAssociationField
В результате я ожидаю, что только группа содержит horse
.