How can I filter (using the EspoCRM PHP functions) a date-time field by the date only - ignoring the time part?
The above doesn't seem to work at all.
Code:
$list = $this->getEntityManager()->getRepository($entityType)->where([ 'date(createdAt)' => date("Y-m-d") ]);
Comment