3

我有一个带有 startDate 和 endDate 属性的 Grails 域对象。

查找范围 [startDate, endDate] 与指定日期范围重叠的所有对象的最佳方法是什么?我知道如何在 SQL 中做到这一点,但想知道是否有任何 Grails/GORM 魔法可以更简洁地做到这一点。

此外,endDate 是一个可选属性。

SQL / JPQL 查询类似于

from MyObject obj where obj.startDate <= ?1 and (obj.endDate is null OR obj.endDate >= ?2)
4

1 回答 1

7

在这种情况下采用 Grails/GORM 的两种方式:

懒惰的:-

def today = new Date()
def query = MyObject.where {
    startDate <= (today - 10) && (endDate == null || endDate >= today + 10)
}
def listOfMyObjects = query.list()

渴望的:-

def today = new Date()
def listOfMyObjects = MyObject.findAll {//or find{} if you need the first occurance
    startDate <= (today - 10) && (endDate == null || endDate >= today + 10)
}
于 2013-05-02T14:37:13.840 回答