我想使用实体管理器 查找1到100之间的所有ID,例如:
我真的被困在谁可以帮助我
$em = $this-> getDoctrine() -> getEntityManager();
$KPII = $em-> getRepository('AdminBlogBundle: AlertesBss2') -> findBy(array ('id' =>)
答案 0 :(得分:1)
请参阅the docs:
$em
->createQuery('
SELECT u.name
FROM User u
WHERE u.id BETWEEN :from AND :to'
)
->setParameters([
'from' => $form,
'to' => $to,
])
->getResult()
;