dqcz57269 2015-02-25 09:28
浏览 32
已采纳

限制关系的结果

I have simple tables Post and Comment and I am doing query:

$repository = $this->getDoctrine()
    ->getRepository('AppBundle:Post');

$query = $repository->createQueryBuilder('p')
    ->where('p.made = :made')
    ->setParameter('made', 1)
    ->leftJoin('p.comments', 'c')
    ->andWhere('c.isAdmin = :isAdmin')
    ->setParameter('isAdmin', 1)
    ->getQuery();

$results = $query->getResult();

foreach($results as $post) {
    echo $post->getId(); // this clause where (->where('p.made = :made')) working ok
    foreach($post->getComments() as $comments) {
       echo $comment->getId(); //this clause where (->andWhere('c.isAdmin = :isAdmin')) not working. This return all results
    }
}

So how can I use clause where in query with relations?

SQL:

SELECT 
  i0_.id AS id0, 
  i0_.made AS made1, 
  i0_.name AS name2, 
FROM 
  post i0_ 
  LEFT JOIN comment i1_ ON i0_.id = i1_.comment_id 
WHERE 
  i0_.made = ? 
  AND i1_.isAdmin = ?
  • 写回答

1条回答 默认 最新

  • dqyin0101 2015-02-25 09:56
    关注

    Let's add a select method in your request:

    $query = $repository->createQueryBuilder('p')
    ->select(["c", "p"])
    ->where('p.made = :made')
    ->setParameter('made', 1)
    ->leftJoin('p.comments', 'c')
    ->andWhere('c.isAdmin = :isAdmin')
    ->setParameter('isAdmin', 1)
    ->getQuery();
    

    Is it better ?

    This works better because you specify to hydrate the whole objects rather than just Ids.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器