Hibernate Criteria Restrictions.in 与 ilike 结合
有没有办法将
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 org.hibernate.criterion.Disjunction 的帮助下自己构建它。
You could build it by your own with the help of
org.hibernate.criterion.Disjunction
.