我试过了,但它不起作用。我已经采取了测试行动:
public function testAction() {
$em = $this->getDoctrine()->getEntityManager();
$qb = $em->getRepository('myBundle:Equipement')->createQueryBuilder('e');
$qb->where($qb->expr()->in('e.domaines', array('?1')));
$q = $qb->getQuery();
$q->setParameter(1, 1);
var_dump($q->getArrayResult());
}
但我有一个语义错误
[Semantical Error] line 0, col 61 near 'domaines IN(': Error: Invalid PathExpression.
StateFieldPathExpression or SingleValuedAssociationField expected.
我的班级设备有一个领域域。
class Equipement
{
[...]
/**
* @ORM\ManyToMany(targetEntity="Domaine", inversedBy="equipements")
*/
private $domaines;
我通过构建这样的数组避免了这个问题:
$domaines = array();
$em = $this->getDoctrine()->getEntityManager();
$equipement = $em->getRepository('iMDEODISAASBundle:Equipement')->find($equipementId);
$repoDomaine = $em->getRepository('iMDEODISAASBundle:Domaine');
$idx = 0;
foreach ($equipement->getDomaines() as $domaine) {
$d= $repoDomaine->get($domaine->getId());
$domaines[$idx]=$d[0];
$idx++;
}
return $domaines;
但我想这不是最好的方法。