Last active
December 16, 2015 20:04
-
-
Save ishults/fd857e002bd57edd52a1 to your computer and use it in GitHub Desktop.
Flip create criteria
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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