Grails (Hibernate) 标准查询
我的 Grails 应用程序中有一个域类,如下所示:
class Event {
Date date
}
我想编写一个条件查询来选择某年某月发生的事件,有什么建议吗?
谢谢, 大学教师
I have a domain class in my Grails app that looks like this:
class Event {
Date date
}
I want to write a criteria query that selects events that occurred in a certain month of a certain year, any suggestions?
Thanks,
Don
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能只使用
Between :
我不确定
Between 的包容性 - 如果两端都不包含,您可能需要调整开始/结束日期。
You could probably just use
between
:I'm not certain of the inclusivity of
between
- you may need to adjust your start/end dates if it's not inclusive on both ends.