Skip to content

Instantly share code, notes, and snippets.

@oehme
Last active December 20, 2015 06:39
Show Gist options
  • Save oehme/6087314 to your computer and use it in GitHub Desktop.
Save oehme/6087314 to your computer and use it in GitHub Desktop.
QPerson p = QPerson.person;
List<Person> persons = db.from(p)
.where(
(p.firstName.loe("C").or(p.lastName.goe("T")))
.and(p.age.gt(18))
.and(p.gender.eq(Gender.FEMALE))
)
.orderBy(p.firstName.asc())
.list(p);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment