Hibernate Criteria Restrictions.in 与 ilike 结合

发布于 2024-10-23 14:30:32 字数 271 浏览 0 评论 0原文

有没有办法将

Restrictions.in(String, Collection<String>)

with

Restrictions.ilike(String, String)

结合起来目标是提供可能匹配的列表(例如 in),但将它们与 ilike 运算符进行比较,而不是硬比较。

这可能吗?

Is there a way to combine the

Restrictions.in(String, Collection<String>)

with

Restrictions.ilike(String, String)

The goal would be to provide a list of possible matches (like in) but to compare them with the ilike operator instead of a hard compare.

Is this possible?

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

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

发布评论

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

评论(1

您可以在 org.hibernate.criterion.Disjunction 的帮助下自己构建它。

Disjunction or = Restrictions.disjunction();
or.add(Restrictions.ilike(String, String));
or.add(Restrictions.ilike(String, String));
or.add(Restrictions.ilike(String, String));

You could build it by your own with the help of org.hibernate.criterion.Disjunction.

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