setMaxResults()を使用します。
1 2 3 4 5 6 7 8 |
$articles = $this->getDoctrine() ->getRepository('MyMtmBundle:Article') ->createQueryBuilder('p') ->where("p.title NOT LIKE 'PR: %' AND p.title NOT LIKE 'AD: %'") ->orderBy('p.allDaysCount', 'DESC') ->setMaxResults(5) ->getQuery() ->getResult() |
setFirstResult()っていうのもあるらしい。
これは、setMaxResults()と一緒に使わないといけないようだ。
オフセットを指定するものですね。