Doctrine2 中以下 SQL 代码是否有等效项?
ORDER BY id DESC LIMIT 0,1
找到了!答案是
->setMaxResults(1)
->setFirstResult(0)
->getOneOrNullResult();