如果我尝试在symfony2中运行此查询
$karte = $em->getRepository('CQIntranetBundle:Karte')->findByPGuId($pguid);
它的回报
Entity 'CQ\IntranetBundle\Entity\Karte' has no field 'pGuId'. You can therefore not call 'findByPGuId' on the entities' repository
字段PGuID存在,但查询尝试查找pGuId是否对此有解决方法?
最佳答案
您可以在Karte存储库中覆盖该方法:
public function findByPGuId($PGuId) {
return $this->createQueryBuilder('k')
->where('k.PGuId= :PGuId')
->setParameter('PGuId',$PGuId)
->getQuery()
->getResult();
}
关于php - 在symfony2中绕过findBy强制将小写字母作为第一个字母,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22989291/