我试着从其中选择的时间由入口时间划分等于没有剩下一个表中选择。
$qb = $em->createQueryBuilder()
->from('AcmeBlogBundle:Entry', 'e')
->andWhere(":duration % e.duration = 0")
->setParameter('duration', $duration);
这将返回错误:
[Syntax Error] line 0, col 226: Error: Expected =, <, <=, <>, >, >=, !=, got '%'
这在普通的SQL工作。 是否有人知道如何与学说的查询生成器做到这一点?