IT

원칙에서 findBy()를 사용하여 결과를 정렬하는 방법

itgroup 2022. 11. 17. 21:07
반응형

원칙에서 findBy()를 사용하여 결과를 정렬하는 방법

사용하고 있는 것은findBy()메서드를 지정합니다.

$entities = $repository->findBy(array('type'=> 'C12'));

결과를 주문하려면 어떻게 해야 하나요?

의 두 번째 파라미터findBy주문용입니다.

$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'));

언급URL : https://stackoverflow.com/questions/12048452/how-to-order-results-with-findby-in-doctrine

반응형