OData 和区分大小写
我一直在弄乱 OData 并意识到 URI 是区分大小写的。 .../Northwind.svc/产品 != .../Northwind.svc/产品 这是故意的吗?有没有办法让它不区分大小写?
I've been messing with the OData and realized that URIs are case sensitive. .../Northwind.svc/Products != .../Northwind.svc/products
Is this done on purpose? is there a way to make it case insensitive?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
推荐的解决方案是使用受支持的 OData 函数
toupper
或tolower
来解决区分大小写问题(使用filter$
命令时)并获得完整的结果集。我写了一篇简短的文章,更详细地解释了这一点:
处理 OData 中的区分大小写< /a>
The recommended solution is to either use the supported OData functions
toupper
ortolower
to work out the case sensitivity issues (when using afilter$
command) and get the full result set.I wrote a brief post explaining this a bit further in detail:
Dealing With Case Sensitivity in OData
这是一个示例:
这将返回所有姓名为“James”的人(不区分大小写,可能是“JAMES”、“james”、“JamES”等。
希望这会有所帮助
Here's an example:
This would return you all people with name is 'James' (case insensitive, could be 'JAMES', 'james', 'JamES', etc.
Hope this will help