diff --git a/docs/en/reference/query-builder.rst b/docs/en/reference/query-builder.rst index 2c48f9dba..fba2d75ec 100644 --- a/docs/en/reference/query-builder.rst +++ b/docs/en/reference/query-builder.rst @@ -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);