gpt4 book ai didi

php - 绕过 symfony2 中的 findBy 强制小写作为第一个字母

转载 作者:行者123 更新时间:2023-11-29 13:03:53 25 4
gpt4 key购买 nike

如果我尝试在 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com