I use the doctrine query builder to buil my query.
$qb = $this->getEntityManager()->createQueryBuilder();
$qb->select(array('u'))->from('Account', 'a');
-- problem here
$qb->where('lower_unaccent(u.email) LIKE :search');
$qb->setParameter('search', $search['search'] . '%');
This works fine, but i would like to apply the lower_unaccent function also tho the search parameter.
Is there a way to do it with the query builder?
Because when i do 'LOWER_UNACCENT(u.email) LIKE LOWER_UNACCENT(:search)' I have the following error Error: Expected Doctrine\ORM\Query\Lexer::T_STRING, got 'LOWER_UNACCENT' even if i change LOWER_UNACCENT TO LOWER, I have the same error message.
$qb->setParameter('search', '%'.$search['search'] . '%');– Adem ÖztaĆ Jan 30 at 15:15