J'utilise la méthode findBy()
sur un référentiel Doctrine:
$entities = $repository->findBy(array('type'=> 'C12'));
Comment puis-je commander les résultats?
Le deuxième paramètre de findBy
est pour 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'));