OData 和区分大小写

发布于 2024-10-02 09:06:58 字数 104 浏览 4 评论 0原文

我一直在弄乱 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

兔姬 2024-10-09 09:06:58

推荐的解决方案是使用受支持的 OData 函数 touppertolower 来解决区分大小写问题(使用 filter$ 命令时)并获得完整的结果集。

我写了一篇简短的文章,更详细地解释了这一点:
处理 OData 中的区分大小写< /a>

The recommended solution is to either use the supported OData functions toupper or tolower to work out the case sensitivity issues (when using a filter$ 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

腻橙味 2024-10-09 09:06:58

这是一个示例:

/people?$filter=tolower(Name) eq tolower('jAmes') - 

这将返回所有姓名为“James”的人(不区分大小写,可能是“JAMES”、“james”、“JamES”等。
希望这会有所帮助

Here's an example:

/people?$filter=tolower(Name) eq tolower('jAmes') - 

This would return you all people with name is 'James' (case insensitive, could be 'JAMES', 'james', 'JamES', etc.
Hope this will help

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文