标签: grails criteria
Class Vote { String name; Date startDate; Date endDate; }
我希望在结束日期优于新日期时显示所有投票
答案 0 :(得分:1)
Grails docs显示条件中的运算符列表。在您的情况下,您可以使用gt并传递当前日期。
gt
def votes = Vote.createCriteria().list() { gt('endDate', new Date()) }