1
0
mirror of synced 2025-03-20 15:03:53 +03:00

Merge pull request #732 from trsteel88/patch-1

Update working-with-associations.rst
This commit is contained in:
Guilherme Blanco 2013-07-22 20:22:37 -07:00
commit 6f39a426a7

View File

@ -630,7 +630,7 @@ large collections.
$criteria = Criteria::create()
->where(Criteria::expr()->eq("birthday", "1982-02-17"))
->orderBy(array("username" => "ASC"))
->orderBy(array("username" => Criteria::ASC))
->setFirstResult(0)
->setMaxResults(20)
;