NHibernate 获得下一个生日
我有一个表,其中包含日期时间类型的生日列。现在我应该使用 HQL 选择生日在接下来 10 天内或过去 5 天内的所有人员。如何使用 NHibernate 3.2 HQL 做到这一点? 谢谢。 托马斯
I have a table which contains a column Birthday of Type DateTime. Now I should select with HQL all Persons which Birthday is in the next 10 days or was in the last 5 days. How can I do this with NHibernate 3.2 HQL?
Thanks.
Thomas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已经解决了
I have solved it with
在 HQL 中,一种方法是:
或者,但是我不确定两者之间是否包含在内:
In HQL one way is:
Alternatively, however i am unsure if the between is inclusive or not off the top of my head: