使用 Criteria API 的 Hibernate str() 函数

发布于 2025-01-04 04:59:26 字数 52 浏览 1 评论 0原文

如何使用 HQL str() 函数通过 Criteria API 将数值转换为可读字符串?

How can I use HQL str() function which is using for converting numeric value to readable string with Criteria API?

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

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

发布评论

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

评论(1

尘世孤行 2025-01-11 04:59:26

我认为,您不需要使用 Criteria API 的 str() 函数,因为您可以首先使用 API 函数将数字转换为字符串,例如: Integer.toString() 然后设置为 Parameter like;

List cats = sess.createCriteria(Cat.class)
    .add( Restrictions.like("age", Integer.toString(age) ) )
    .list();

I think, you won't need str() function with Criteria API, since you can first convert numerics into Strings with API functions like: Integer.toString() then set as Parameter like;

List cats = sess.createCriteria(Cat.class)
    .add( Restrictions.like("age", Integer.toString(age) ) )
    .list();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文