2011-07-09 73 views
9
'[Syntax Error] line 0, col 71: Error: Expected end of string, got 'LIMIT'' 

這裏是我的代碼: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(); 
    } 

什麼能posibly問題的呢?如何在教義中使用LIMIT?

我使用學說2

回答

15

好像有no LIMIT /在DQL anymore抵消。

$qb = $em->createQueryBuilder(); 
//.. build your query 
$q = $qb->getQuery(); 
$q->setFirstResult($offset); 
$q->setMaxResults($limit); 
$result = $q->getResult(); 
3

我想貢獻給這個帖子,想告訴人們,如果你想在單元測試中使用DBAL與限制,您可以使用下列內容:

$client = static::createClient() 
$em = $client->getContainer()->get('doctrine')->getManager(); 
$query = $em->createQuery('WRITE YOUR QUERY HERE'); 
$query->setFirstResult(0); 
$query->setMaxResults(1); 
$data = $query->getResult(); 

相同的代碼可以使用在控制器中也有一些修改:)