Skip to content
aodin edited this page May 18, 2016 · 1 revision

Example SELECT with ordering:

Users.Select().OrderBy(
	Users.C("email").Desc(),
	Users.C("id"),
)
SELECT "users"."id", "users"."email", "users"."password" FROM "users" ORDER BY "users"."email" DESC, "users"."id"
Clone this wiki locally