Hi Everyone, how do i count results without really fetching the objects. Currently i do the following: function findAllCount() { $query = createQuery; $videos = $query->execute(); return count($videos); } That's total foolish if you imagine 14000 objects. But i don't see how to do it in another way. Greetings Sebastian