Answer the question
In order to leave comments, you need to log in
Complex logical operator where Sympfony Sonata?
I configure createQuery I form a query string in a loop in order to execute
$qb->where('u.firstName = ?1 AND u.surname = ?2')
Answer the question
In order to leave comments, you need to log in
in the case of complex use , you WHERE
should write something like
$qb
->where('u.firstName = :fitst_name')
->andWhere('u.surname = :user_name')
->setParameters(array('fitst_name' => 'FirstName', 'user_name' => 'UserName'))
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question