Skip to content

Instantly share code, notes, and snippets.

@gdarquie
Created January 30, 2020 10:00
Show Gist options
  • Save gdarquie/5128cf21ee88b46e7920c5dd379ab1f3 to your computer and use it in GitHub Desktop.
Save gdarquie/5128cf21ee88b46e7920c5dd379ab1f3 to your computer and use it in GitHub Desktop.
Example of raw SQL Doctrine
$sql = 'SELECT * FROM fragment LIMIT 10';
$stmt = $this->getEntityManager()->getConnection()->prepare($sql);
$stmt->execute();
return $stmt->fetchAll();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment