【发布时间】:2014-01-26 08:25:40
【问题描述】:
我有一个域类反馈
class Feedback{
String name
String email
Date createdOn
Boolean isMailSent
}
I want to fetch all feedbacks with the condition as below
1) isMailSent == false
2) (createdOn - cuurent time) >= 15 minutes
如何在 createCriteria() 方法中编写这些条件。
我在这里尝试过的
def feedbackList = Feedback.createCriteria().list(
) {
eq('isMailSent ', false)
/** here condition (createdOn - cuurent time) >= 15 minutes **/
}
【问题讨论】:
标签: hibernate grails grails-orm