У меня есть связь «многие ко многим» с сущностью «Продукт» и сущностью «Объект». Сущность продукта:
/**
* @ORM\ManyToMany(targetEntity="Feature")
* @ORM\JoinTable(name="Product_Feature",
* joinColumns={@ORM\JoinColumn(name="Product_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="Feature_id", referencedColumnName="id")}
* )
*/
private $features;
Сущность объекта:
/**
* @ORM\ManyToMany(targetEntity="Product", mappedBy="features")
* @ORM\OrderBy({"position" = "ASC"})
*/
private $products;
ProductRepository.php:
public function updateFeatures($id, $featuresIds)
{
return $this->getEntityManager()->createQueryBuilder()
->update('TestCatalogBundle:Product', 'p')
->set('p.features', ':features')
->where('p.id = :id')
->setParameter('features', $featuresIds)
->setParameter('id', $id)
->getQuery()
->getResult();
}
Но когда я вызываю updateFeatures, я получаю сообщение об ошибке:
features =: features ': Ошибка: неверное выражение PathExpression.Ожидается StateFieldPathExpression или SingleValuedAssociationField
Как обновить таблицу Product_Feature?Также я не могу удалить все функции из Product_Feature по идентификатору продукта.
Я изменил свой контроллер следующим образом:
$em = $this->getDoctrine()->getEntityManager();
$features = $em->getRepository('TestCatalogBundle:Feature')->findBy(array('id' => $featureIds));
$product = $em->getRepository('TestCatalogBundle:Product')->find($id);
$product->getFeatures()->clear();
foreach ($features as $feature) {
$product->addFeature($feature);
}
$em->persist($product);
$em->flush();
Но если я использую собственный sql, мне нужно 2 запроса для удаления функций и добавления новыхфункции.Но здесь мне нужно 2 запроса на выборку.Может я ошибся в этой задаче?