晚上好,
我的数据库中有一个名为 Events 的表,它有两个字段:数据类型 Date 的 START_DATE 和 END_DATE。我还创建了一个名为 Event 的域类,如下所示:
class Event{
Date startDate
Date endDate
static mapping = {
table 'events'
startDate column: 'start_date'
endDate column: 'end_date'
}
}
然后我创建了一个 EventsService 查询数据库中两个日期之间开始和结束的事件。目前我正在尝试使用以下代码获取在两个日期之间开始的事件:
String hql = "select e from Event e where e.startDate >= :startDateMin and e.startDate <= :startDateMax"
params.put("startDateMin",filter.getStartDateMin())
params.put("startDateMax",filter.getStartDateMax())
def results = Event.executeQuery(hql,params,config)
filter 是我用来存储所有搜索条件的对象,而 config 是存储 sotring 和 paging 参数的映射。
如果我只是尝试减少所有事件,我将获得数据库中的所有事件但是如果我尝试执行上面的查询,那么我会得到这个异常:
Caused by: org.hibernate.QueryException: could not resolve property: startDate of: ipmt.modules.Event [select e from ipmt.modules.Event e where e.startDate >= :startDateMin and e.startDate <= :startDateMax]
我已经尝试了一切,但我无法弄清楚问题所在。我的数据库是 OracleSQL。