Merge pull request #1044 from ronanguilloux/patch-2
Use of ->andWhere() whithout any ->where() before is valid
This commit is contained in:
commit
5d1275e938
1 changed files with 2 additions and 0 deletions
|
@ -156,6 +156,8 @@ Here is a complete list of helper methods available in ``QueryBuilder``:
|
|||
// Example - $qb->where('u.firstName = ?1 AND u.surname = ?2')
|
||||
public function where($where);
|
||||
|
||||
// NOTE: ->andWhere() can be used directly, without any ->where() before
|
||||
//
|
||||
// Example - $qb->andWhere($qb->expr()->orX($qb->expr()->lte('u.age', 40), 'u.numChild = 0'))
|
||||
public function andWhere($where);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue