'[Syntax Error] line 0, col 71: Error: Expected end of string, got 'LIMIT''
Aquí está mi código:Error de sintaxis de Doctrine LIMIT?
public function getLatestChapters()
{
return $this->_em->createQuery('SELECT c, m FROM models\Chapter c JOIN c.Manga m ORDER BY c.CreateDate LIMIT 10')->getResult();
}
¿Qué podría posibly el problema de esto? ¿Cómo puedo usar LIMIT en Doctrine?
estoy usando Doctrina 2