我希望使用hibernate .Like,
获取开始日期和结束日期之间的记录id startDate endDate
15 2011-01-05 05:05:10 2011-05-01 09:05:10
37 2010-03-01 05:06:10 2010-06-01 09:07:10
49 2005-01-05 03:03:03 2005-05-01 08:08:08
我想在提供startDate = 2011-01-05 05:05:10和endDate = 2011-05-01 09:05:10
时提交15我想在提供startDate = 2010-03-01 05:06:10和endDate = 2010-06-01 09:07:10
时重审37有人可以告诉我如何使用hibernate吗?我试过使用之间的条款,但没有工作。
答案 0 :(得分:0)
您尝试使用什么标准?如果startDate和endDate都需要匹配要返回的行,那么您可以尝试使用以下限制:
Restrictions.and(Restrictions.eq("startDate",startDateValue),Restrictions.eq("endDate", endDateValue))