整数字段的 Odata 过滤器 StartsWith

发布于 2024-11-05 02:14:23 字数 386 浏览 3 评论 0原文

我的 Odata 服务也在连接数据库中有一个 int 字段。我想知道是否可以对整数字段执行 StartsWith 过滤器。

例如 http://services.odata.org/Northwind/Northwind.svc/Customers?$filter=startswith(CustomerID, '1') eq true

在此示例中,CustomerID 将是 int 字段。目前,我收到错误 400 响应,这是因为您无法在 int 字段上执行startswith。我可以以某种方式将字段投射到过滤器中吗?

提前致谢

I have an int field in the database that my Odata service is connecting too. Im wondering if it is possible to do a StartsWith filter on the integer field.

e.g. http://services.odata.org/Northwind/Northwind.svc/Customers?$filter=startswith(CustomerID, '1') eq true

Where in this example the CustomerID will be an int field. Currently im getting a Error 400 response, which im gathering is because you cannot perform the startswith on the int field. Can I somehow cast the field in the filter?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

一刻暧昧 2024-11-12 02:14:30

不知道...也许你可以这样做:

$filter=(Id gt 0 and Id lt 2) or (Id gt 9 and Id lt 20) or (Id gt 99 and Id lt 200)。 ..

Don't know about that... maybe you can do something like this:

$filter=(Id gt 0 and Id lt 2) or (Id gt 9 and Id lt 20) or (Id gt 99 and Id lt 200)...

渡你暖光 2024-11-12 02:14:29

试试这个:

$filter=(startswith(cast(CustomerID, 'Edm.String'),'1'))  

Try this:

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