将列表/数组/集合传递到 WCF 数据服务 (OData) 服务操作中

发布于 2024-12-21 07:32:03 字数 325 浏览 1 评论 0原文

我会创建一个采用 IEnumerable 参数的服务操作。

我如何从客户端调用它?

我读了这个 post 它向我展示了如何设置它。但我不知道如何传递 arry/collection/list。

我想我可以转换为逗号分隔的字符串,然后再次解析它,但这似乎只是为了传递长整型列表而进行的黑客攻击。

I would have created a service operation that takes an IEnumerable param.

How can I call this from the Client side?

I read this post and it showed me how to set it up. But I don't see how to pass in an arry/collection/list.

I guess I could convert to a comma seperated string and then parse it out again, but that seems like a hack just to pass a list of longs.

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

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

发布评论

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

评论(2

风柔一江水 2024-12-28 07:32:03

目前,服务操作仅支持原始类型参数。因此没有简单的方法来传递值列表。如果可能的话,使用逗号分隔的字符串通常是一个合理的解决方法。

Service operations only support primitive type arguments currently. So there's no simple way to pass in a list of values. Using the comma separated string if possible is usually a reasonable workaround.

山有枢 2024-12-28 07:32:03

如果要使用Get方法进行此操作,则参数不能是列表或集合之类的。
我建议您使用Post方法,并将所有参数放在请求正文中。
希望这可以帮助您!

If you want to user Get Method for this operation, the parameters cannot be like list or collections.
I suggest you use Post Method, and put all of your parameters in the request body.
Hope this can help you !

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