PostRepository#getPostWithComments() fixed.

This commit is contained in:
Alexey Skobkin 2016-03-29 09:52:21 +03:00
parent 6d10b6dac1
commit f4f33a8947
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ class PostRepository extends EntityRepository
->leftJoin('p.comments', 'c')
->leftJoin('c.author', 'a')
->where($qb->expr()->eq('p.id', ':post_id'))
->orderBy('c.number', 'asc')
->setParameter('post_id', $postId)
->getQuery()->getOneOrNullResult()
;