How to order results with findBy() in Doctrine How to order results with findBy() in Doctrine php php

How to order results with findBy() in Doctrine


The second parameter of findBy is for ORDER.

$ens = $em->getRepository('AcmeBinBundle:Marks')          ->findBy(             array('type'=> 'C12'),              array('id' => 'ASC')           );


$ens = $em->getRepository('AcmeBinBundle:Marks')              ->findBy(                 array(),                  array('id' => 'ASC')               );


$cRepo = $em->getRepository('KaleLocationBundle:Country');// Leave the first array blank$countries = $cRepo->findBy(array(), array('name'=>'asc'));