在dql中使用查询选择多个属性

时间:2019-03-09 09:10:12

标签: dql symfony-3.4

我的目标是编写一个dql查询,该查询返回dql中实体的两个属性。 我的查询:

$queryEvents = $em->createQueryBuilder('v')
            ->select('e')
            ->from('AppBundle:Event', 'e')
            ->where('e.maxCountParticipants >= e.currentCountOfParticipants')
            ->andWhere('e.finalDateForRegistration >= :now')
            ->setParameter('now', $now)
            ->orderBy('e.finalDateForRegistration', 'DESC')
        ;

Event类还具有一个日期属性'finalDateForRegistration',我确实希望将其添加到“ select”中,但我不知道该怎么做。

0 个答案:

没有答案