如何不区分大小写下订单
我开始使用 MongoDB 和 NoRM,我想做一个不区分 Ccase 的 orderBy,这可能吗?
感谢您的帮助!
I'm starting to work with MongoDB and NoRM and I would like to do an orderBy that is not Ccase sensitive, is it possible?
Thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这似乎不可能(阅读http://groups.google.com/group/mongodb-user/browse_thread/thread/1491cfb04ec706b3/c2050f57daea3836?lnk=gst&q=insensitive#c2050f57daea3836)。
您可以将该值存储两次,一次使用混合大小写,一次使用大写字母。您可以使用大写值对列进行索引。
It seems impossible (read http://groups.google.com/group/mongodb-user/browse_thread/thread/1491cfb04ec706b3/c2050f57daea3836?lnk=gst&q=insensitive#c2050f57daea3836).
You can store the value twice, once in mixed casing and once in uppercase. You can index the column with uppercase values.