-
-
Save achilleskineur/0caf32f38cffc6ed979c8b77d762cfba to your computer and use it in GitHub Desktop.
Concrete example of WHERE...IN subquery in doctrine 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class MyRepository extends EntityRepository | |
{ | |
public function whereInSubQuery(User $user) | |
{ | |
$queryBuilder = $this->createQueryBuilder('my_repository'); | |
$queryBuilder | |
->where( | |
$queryBuilder->expr()->in( | |
'my_repository.skill', | |
$this | |
->_em->createQueryBuilder('subquery_repository') | |
->select('skill.id') | |
->from('EntityBundle:Skill', 'skill') | |
->where('skill.user = :user') | |
->getDQL() | |
) | |
) | |
->setParameter(':user', $user); | |
return $queryBuilder->getQuery()->getResult(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment