php – Doctrine setParameter和无效的参数号

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – Doctrine setParameter和无效的参数号脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
经过多次尝试,我想我终于明白了文档.
然后,我需要你的帮助..我不明白为什么Doctrine告诉我这个错误

这是我的代码

$qb = $this->em->createQueryBuilder();
$qb->select('m')
   ->From('EntITies\Marque','m')
   ->leftJoin('m.magasin','ma')
   ->where('m.nom = :marque AND ma.nom LIKE :magasin')
   ->setParameter('marque',$marque)
   ->setParameter('magasin','%'.$matchesNumber[1].'%');
$results = $qb->getQuery()->getArrayResult();

提前感谢您的回答.

如果您不小心使用多个where(),这种情况也会发生在我身上.
$em    = $this->getEntityManager();
$query = $em->createQueryBuilder()
    ->from('AppBundle:SomeEntity','s')
    ->select('s')
    ->where('s.foo = :foo')
    ->where('s.bar = :bar') // <- HERE
    ->setParameter('foo','Foo Value')
    ->setParameter('bar','Bar Value');

应该

$em    = $this->getEntityManager();
$query = $em->createQueryBuilder()
    ->from('AppBundle:SomeEntity','s')
    ->select('s')
    ->where('s.foo = :foo')
    ->andWhere('s.bar = :bar') // <- CHANGE TO andWhere()
    ->setParameter('foo','Bar Value');

希望这有助于某人.

脚本宝典总结

以上是脚本宝典为你收集整理的php – Doctrine setParameter和无效的参数号全部内容,希望文章能够帮你解决php – Doctrine setParameter和无效的参数号所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。