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
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();