如何检查 Doctrine Collection (ManyToMany关系)字段中是否存在给定值?
例如我尝试:
$someClass = $this->
getDoctrine()->
getRepository('MyBundle:MyClass')->
find($id);
if (!$entity->getMyCollectionValues()->get($someClass->getId())) {
$entity->addMyCollectionValue($someClass);
}
但它当然不正确。那么,如何避免重复键?
答案 0 :(得分:27)
你可以这样做:
$object = $this->getDoctrine()->getRepository('MyBundle:MyClass')->find($id);
if ( !$entity->getMyCollectionValues()->contains($object) ) {
$entity->addMyCollectionValue($object);
}
中查看Doctrine ArrayCollection的可用功能