I retrieve all objects for an entity like this:
$allQuestions = $em->getRepository('AppMyBundle:Question')
->findBy(array('isActive' => true, 'isDeleted' => false));
I get an array of objects into $allQuestions
. Is there a possibility to get an ArrayCollection
instead of an array?