Update en/reference/query-builder.rst
Fix syntax error in one of the orderBy examples.
This commit is contained in:
parent
d8b94b0527
commit
b0a24c8baa
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ allowed. Binding parameters can simply be achieved as follows:
|
|||
$qb->select('u')
|
||||
->from('User u')
|
||||
->where('u.id = ?1')
|
||||
->orderBy('u.name ASC');
|
||||
->orderBy('u.name', 'ASC');
|
||||
->setParameter(1, 100); // Sets ?1 to 100, and thus we will fetch a user with u.id = 100
|
||||
|
||||
You are not forced to enumerate your placeholders as the
|
||||
|
|
Loading…
Add table
Reference in a new issue