Doctrine Query Builder using Array

后端 未结 3 557
迷失自我
迷失自我 2021-02-10 16:51

I have an array of id:

Id_array; //array(2) { [0]=> int(9) [1]=> int(10) } 

I simply want to select the users using Id_array; I managed

相关标签:
3条回答
  • 2021-02-10 17:31

    On doctrine 2 is implemented by the repository now since 2.1 or 2.2

    findBy(array('id' => array(1, 2, 3, 4, 5));
    
    0 讨论(0)
  • 2021-02-10 17:36

    In case someone runs into something similar, I used the query builder, The key point is to use the IN statement.

    //...
    $qb = $this->createQueryBuilder('u');
    $qb->add('where', $qb->expr()->in('u.id', ':my_array'))
    ->setParameter('my_array', $Id_array);
    
    0 讨论(0)
  • 2021-02-10 17:52

    Or without the query builder:

    $query = $em->createQuery('SELECT u FROM Users u WHERE u.id IN (:id)');
    $query->setParameter('id', array(1, 9));
    $users = $query->getResult();
    
    0 讨论(0)
提交回复
热议问题