1
0
mirror of synced 2025-01-31 12:32:59 +03:00

Update en/reference/query-builder.rst

Adding note for $append parameter of QueryBuilder::add() method.
This commit is contained in:
Mykola Zyk 2012-12-07 19:44:47 +02:00
parent 4b4126dfa6
commit ca1c6498ec

View File

@ -500,7 +500,8 @@ of DQL. It takes 3 parameters: ``$dqlPartName``, ``$dqlPart`` and
a string or any instance of ``Doctrine\ORM\Query\Expr\*`` a string or any instance of ``Doctrine\ORM\Query\Expr\*``
- ``$append``: Optional flag (default=false) if the ``$dqlPart`` - ``$append``: Optional flag (default=false) if the ``$dqlPart``
should override all previously defined items in ``$dqlPartName`` or should override all previously defined items in ``$dqlPartName`` or
not not (no effect on the ``where`` and ``having`` DQL query parts,
which always override all previously defined items)
- -