The "start" is a dateTime. I'm trying to get all rows that have "start" = Today without considering the hours and mins. This what I did so far. Only events with this form 'Y-m-d 00:00:00' are selected
$em = $this->getDoctrine()->getManager();
$onthisday = $em->createQuery('
SELECT e
FROM ECMEventBundle:Events e
WHERE e.start = CURRENT_DATE()
AND e.eventcreator = :userId'
)->setParameter ( 'userId', $user->getId () );
$todayEvent = $onthisday->getResult();
Any response will be appreciated.