在 hibernate 中使用 Criteria API 限制日期

发布于 2024-10-21 22:50:54 字数 147 浏览 5 评论 0原文

情况是这样的。 SQL Server中日期的格式与oracle中不同。在 SQL Server 中,它存储为时间戳。 Restriction.eq 、 Restriction.lt 、 Restriction.gt 如何在 Date 对象上工作?有没有办法只使用日期而不使用时间?

The situation is like this. The format of the date in SQL server is different from oracle. In SQL server it is stored as TimeStamp. How does Restriction.eq , Restriction.lt, Restriction.gt work on Date objects ? Is there any way to just use date and not the time ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巴黎夜雨 2024-10-28 22:50:54

根据 这个答案,您可以使用 Restriction .ltProperty 以及日期字段的相关限制,Hibernate 会尽力解析它们。

如果此方法不起作用,您始终可以使用 Restrictions.sqlRestriction 在本机 SQL 中编写限制。

According to this answer, you can use Restriction.ltProperty and related restrictions on date fields and Hibernate will do its best to parse them.

In case this approach should not work, you can always write your restrictions in native SQL using Restrictions.sqlRestriction.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文