Skip to content

Instantly share code, notes, and snippets.

@Tocacar
Created July 23, 2013 11:00
Show Gist options
  • Save Tocacar/6061566 to your computer and use it in GitHub Desktop.
Save Tocacar/6061566 to your computer and use it in GitHub Desktop.
$qb->select("u")
->from("YourUserBundle:User", "u")
->join("u.Group", "g")
->join("g.Role", "r")
->where("r.role = :role");
$query = $qb->getQuery();
$query->setParameter("role", $role);
$results = $query->getResult();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment