Mysql
 sql >> Database >  >> RDS >> Mysql

Estensione GIS per Dottrina 2

Se vuoi chiamare la funzione SQL in dottrina2 puoi farlo essere Expression Funzione ma questo funzionerà solo con DQL.

Qui hai un esempio che ti dirà come usare la funzione DATE_DIFF che non è inclusa nella dottrina.

$qb = $repository->createQueryBuilder('l');
$qb->expr()->lte(new Doctrine\ORM\Query\Expr\Func('DATE_DIFF',array('lo.start_date', 'CURRENT_DATE()')),'0');