Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用原则扩展,当区域设置更改时,搜索 ID=1 的实体会返回当前区域设置的正确值(存储在翻译表中),这是一件好事,但是如果我需要通过另一个字段搜索实体怎么办,比如名字什么的。。
有没有办法使用该 ID 的其他实体字段/属性来获得正确的结果?
尝试使用:
$query = $em->createQuery("SELECT pc FROM MyDomain\Model\ProductCategory pc WHERE pc.webName LIKE :name") $query->setParameter("name", $name); $query->getResult();