我的 grails 应用程序具有以下类
class Person {
Address address
// other attributes
}
class Address {
String street
City city
// more attributes
}
我想按街道名称的字母顺序查询前 5 个人。目前我做类似的事情
def criteria = Person.createCriteria();
def people = criteria.list(max:5) {
address {
order("street","asc")
}
}
这行得通。我只是想知道是否有更短的方法来做到这一点(可能没有标准构建器)。