我findBy()
在 Doctrine 存储库上使用该方法:
$entities = $repository->findBy(array('type'=> 'C12'));
如何订购结果?
我findBy()
在 Doctrine 存储库上使用该方法:
$entities = $repository->findBy(array('type'=> 'C12'));
如何订购结果?
的第二个参数findBy
用于 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'));