我的目标是编写一个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”中,但我不知道该怎么做。