Last active
October 8, 2024 00:29
-
-
Save roukmoute/d8b7473da78fc9d8b867 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 | |
->createQueryBuilder('subquery_repository') | |
->select('skill.id') | |
->from('EntityBundle:Skill', 'skill') | |
->where('skill.user = :user') | |
->getDQL() | |
) | |
) | |
->setParameter(':user', $user); | |
return $queryBuilder->getQuery()->getResult(); | |
} | |
} |
Hello many thank for this gist but there is a issue with
$this->createQueryBuilder('subquery_repository')
This function in repository return
$this->_em->createQueryBuilder()
->select($alias)
->from($this->_entityName, $alias);
You have to replace with
$this->_em->createQueryBuilder()
thnx for this, it helped me
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://stackoverflow.com/questions/6637506/doing-a-where-in-subquery-in-doctrine-2