I have a doctrine query that returns blog posts and their comments:

SELECT b, c FROM BlogPost b LEFT JOIN b.comments c

I would like to limit the results to 10 blog posts. According to the DQL documentation, setMaxResults() doesn't work correctly on queries that fetch-join a collection (comments in this case):

If your query contains a fetch-joined collection specifying the result limit methods are not working as you would expect. Set Max Results restricts the number of database result rows, however in the case of fetch-joined collections one root entity might appear in many rows, effectively hydrating less than the specified number of results.

How would I properly limit a doctrine query that contains a fetch-joined collection (in this case, limit the results to 10 blog posts)?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

This repository http://github.com/beberlei/DoctrineExtensions has a paginator extension that works with fetch joins. You have to essentially make 3 SELECT statements, all of which this extension does for you.

link|improve this answer
Thanks. Do you mind sharing how to do this without the DoctrineExtensions? Right now, I do not want to include any extra library that isn't absolutely needed. I also think this would benefit many other readers in the future. – Steve Apr 12 '11 at 16:55
You should look at the code of the extension. Its: First: One SELECT DISTINCT mainentity.id WHERE clause to get all the ids. Second: One Select Clause with WHERE id IN (..) with the previously fetched ids. Third: one SELECT DISTINCT clause for the number of total results. – beberlei Apr 13 '11 at 16:06
Thanks, I understand what's going on now. I did end up using the extensions though. Looked like a lot of useful extensions with little overhead. – Steve Apr 13 '11 at 17:22
feedback

Paginate was merded with doctrine 2.2 And the new symfony2 release 2.0.10 is compatible with.

Now use it like that

//use Doctrine paginator
use Doctrine\ORM\Tools\Pagination\Paginator;

Write your query then call results like that.

$query->setMaxResults($limit);
$query->setFirstResult($offset);
$results = new Paginator($query, $fetchJoin = true);

Hope this will help you.

Note: If you are using SF2 2.0.10, you should update the deps and deps.lock files and specify the 2.2 version for Doctrine bundles.

link|improve this answer
feedback

Did the same with a querybuilder and it works. Maybe something else is the problem?

$qb->add('select', 'b, c, ch, g')
   ->add('from', 'Broadcast b')
   ->add('groupBy', 'b.title')
   ->add('where', 'b.imageBig != \'\'')
   ->add('orderBy', 'b.starttime ASC')
   ->setMaxResults(10)
   ->leftJoin('b.category', 'c')
   ->leftJoin('b.channel', 'ch')
   ->leftJoin('b.genre', 'g')
link|improve this answer
Thanks, I'll try it with the query builder. Maybe it is just an issue with using DQL. – Steve Apr 12 '11 at 15:15
This will not work for fetch joined collections. Christian only has fetched join To-One associations. – beberlei Apr 13 '11 at 15:59
feedback

How about

SELECT *
  FROM (SELECT * FROM BlogPost LIMIT 10) b
  LEFT JOIN comments c
    ON (c.<something> = b.<something>)

Share and enjoy.

link|improve this answer
I am unable to use the keyword 'LIMIT' in DQL. – Steve Apr 11 '11 at 22:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.