Guest User

Untitled

a guest
Jun 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2. $qb = $this->createQueryBuilder('country');
  3. return $qb
  4. ->join(Source::class, 'source', Join::WITH, 'source.country = country')
  5. ->getQuery()
  6. ->getResult();
Add Comment
Please, Sign In to add comment