반응형
Doctrine에서 findBy ()로 결과를 주문하는 방법
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'));
참고 URL : https://stackoverflow.com/questions/12048452/how-to-order-results-with-findby-in-doctrine
반응형
'IT story' 카테고리의 다른 글
Google에 설명 된대로 오류 메시지를 표시하도록 Android EditText를 디자인하십시오. (0) | 2020.06.25 |
---|---|
Windows에서 하나의 명령으로 폴더의 모든 파일 확장자 변경 (0) | 2020.06.25 |
ID를 사용하여 여러 SQL 테이블을 조인하는 방법은 무엇입니까? (0) | 2020.06.25 |
GOPATH 외부에 디렉토리 xxx에 대한 설치 위치가 없습니다. (0) | 2020.06.25 |
점 표시기를 사용하여 Android View Pager를 어떻게 만듭니 까? (0) | 2020.06.25 |