class Person {
String firstName
String lastName
Integer age
}
last
目标
检索领域类的最后一个实例。
示例
给定领域类
// retrieve the last person ordered by the identifier
def p = Person.last()
// retrieve the last person ordered by the lastName property
p = Person.last(sort: 'lastName')
// retrieve the last person ordered by the lastName property
p = Person.last('lastName')
参数
-
sort
(可选) - 要按其进行排序的属性的名称
另请参阅
请注意,first() 和 last() 方法不支持使用复合主键的领域类。 |