在没有条件的休眠中不区分大小写的搜索
我想在休眠查询中进行不区分大小写的搜索。我可以使用 Criteria 来做到这一点,但现在这对我来说不是一个选择。触发查询的方法将查询字符串作为输入,并由其他组件使用。是否可以为 Hibernate 会话启用不区分大小写或从 hql 查询准备条件对象。
I want to do case insensitive search in hibernate Query. I can do it with Criteria but it is not an option for me right now. The method which fire query takes a query string as input and it is used by other components. Is it possible to enable case insensitive for Hibernate session or prepare criteria object from hql query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用提到的
lower
或upper
函数此处。You can use the
lower
orupper
functions mentioned here.