Lift Mapper 中的 LowerCase Like 语句
是否可以设置查询来比较表中所有记录的小写?
例子: 我想构建查询:
SELECT * FROM items WHERE LOWER(item.title) LIKE (%abc%)
但是对于 Mapper 中的 Like 对象,我不能说 item.title 必须是小写。
Like(Item.title, "%" + searchText.toLowerCase + "%")
简单 - 用户将 ABC 插入搜索字段,我也想在结果项 aBc 中查看他。
谢谢。
It is possible to set query to compare all records in table in lowercase?
Example:
I want to build query:
SELECT * FROM items WHERE LOWER(item.title) LIKE (%abc%)
but with Like object in Mapper i can't say that item.title has to be lowerCase.
Like(Item.title, "%" + searchText.toLowerCase + "%")
Simply - user inserts ABC into search field and i want to view him in results item aBc also.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了正确的解决方案:
完成我的所有发现 - 这里有适合下一代的所有正确解决方案;)
或
i found right solution:
to complete all my findings - here are all right solutions for future generation ;)
or