Skip to content

Instantly share code, notes, and snippets.

@maccevedor
Created July 25, 2014 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maccevedor/009221fbc368639513cb to your computer and use it in GitHub Desktop.
Save maccevedor/009221fbc368639513cb to your computer and use it in GitHub Desktop.
Consulta Symfony Doctrine
$em = $this->getDoctrine()->getEntityManager();
$dql = "select a from MDWDemoBundle:Articles a";
$query = $em->createQuery($dql);
$articulos = $query->getResult();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment