Моя цель - написать запрос 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», но не могу понять, как.