我有一系列ID,我想从我的ID数组中获取一个实体数组。
我不能使用find。
sql请求如下:
SELECT * FROM mytable WHERE id = 12 OR id = 10 ...
在我的id数组上有一个循环。
答案 0 :(得分:96)
您也可以直接从存储库中获取它:
$em->getRepository('YourRepo')->findById(array(1,2,3,4,5));
你也可以在get no tin数组中传递参数,但是用逗号粘贴的简单字符串
?ids=1,2,3,4,56
然后从$ request
获取它$em->getRepository('YourRepo')->findById(explode(',', $request->get('ids'));
答案 1 :(得分:33)
如何使用QueryBuilder类:
$qb = $em->createQueryBuilder();
$qb->select('m');
$qb->from('MyEntity', 'm');
$qb->where($qb->expr()->in('m.id', array(12, 10)));
//ArrayCollection
$result = $qb->getQuery()->getResult();
或DQL:
$query = $em->createQuery('SELECT m FROM MyTable m WHERE m.id IN(12, 10)');
答案 2 :(得分:21)
只需使用:
$em->getRepository('YourBundle:YourEntity')->findById(array(1, 2, 3, 4));
支持数组作为参数。
答案 3 :(得分:18)
如果您不想使用魔术方法,而不是使用这段代码:
$em->getRepository('AppBundle:FooEntity')->findById([1, 2, 3]);
......你可以用这个:
$em->getRepository('AppBundle:FooEntity')->findBy(['id' => [1, 2, 3]]);
效果是一样的。
答案 4 :(得分:0)
与Entity类一起使用:
$em->getRepository(Entity::class)->findById($ids); //$ids is array