作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有如下三个实体相关:A(一对多) B(一对多) C我如何从 C 中获取基于 A->id 的所有记录??????
最佳答案
类似于:
$entityManager = $this->getDoctrine()->getManager(); // or however you instance Entitymanager
$entityManager
->createQueryBuilder()
->select('c')
->from('entityC', 'c')
->join('c.entityB', 'b')
->join('b.entityA', 'a')
->where('a = :entityA')
->setParameter('entityA', $yourAEntityHere)
->getQuery()
->getResult();
应该可以解决问题。
关于Symfony2 从与另一个 oneToMany 相关的实体 oneToMany 获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27155355/
我是一名优秀的程序员,十分优秀!