Skip to content

Instantly share code, notes, and snippets.

@ishults
Last active December 16, 2015 20:04
Show Gist options
  • Save ishults/fd857e002bd57edd52a1 to your computer and use it in GitHub Desktop.
Save ishults/fd857e002bd57edd52a1 to your computer and use it in GitHub Desktop.
Flip create criteria
List names = Child.createCriteria().list() { // Instead of Parent.createCriteria()
eq('parent', parent)
gt('age', 5)
projections {
property('name')
}
order(Order.asc('name').ignoreCase())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment