Brug metoden toArray()
. Sådan:
$dm = $this->get('doctrine.odm.mongodb.document_manager');
$entities = $dm->getRepository('MyBundle:Animal')->findBy(array("prop" => "1"))->toArray();
Hvis du har brug for at få en række entiteter, skal du bruge array_values()
fungere. Sådan:
$entities = array_values($entities);