从 Linqpad 调用 OData 服务操作

发布于 2024-11-03 00:32:37 字数 130 浏览 0 评论 0原文

有谁知道是否可能,如果可以,通过 linqpad 调用服务操作的语法是什么?

另外,当我使用 linqpad 调用它时,我可以使用命名参数吗?那太好了,因为我在服务操作中有很多参数,并且我不想指定每个参数。

谢谢!

Does anyone know if its possible and if so, what the syntax is for calling a service operation via linqpad?

Also, can I used named parameters when I call it using linqpad- how? That would be great b/c I have a lot of parameters in the service operation and I don't want to have to specify each one.

Thanks!

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

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

发布评论

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

评论(1

不再见 2024-11-10 00:32:37

不幸的是,这是不可能的:LINQPad 依赖于 System.Data.Services.Design.dll 中的 .NET WCF 客户端和 EntityClassGenerator,它们并不真正支持服务操作(从 Framework 4.0 开始)。

此阶段的解决方法与在 Visual Studio 中编码时所做的相同,并且是 这里描述得很好

因此,您可以在 LINQPad 中键入以下内容来调用操作 GetContacts(string firstName)

this.Execute<Contact> (new Uri ("GetContacts?firstName='John'", UriKind.Relative))

或者,如果服务返回对象序列:

CreateQuery<Contact>("GetContacts").AddQueryOption("firstName", "'John'")

Unfortunately, this is not possible: LINQPad relies on the .NET WCF client and EntityClassGenerator in System.Data.Services.Design.dll, which don't really support service operations (as of Framework 4.0).

The workaround at this stage is the same as what you'd do if you were coding in Visual Studio and is described well here.

Hence you could type the following into LINQPad to call the operation GetContacts(string firstName):

this.Execute<Contact> (new Uri ("GetContacts?firstName='John'", UriKind.Relative))

or, if the service returns a sequence of objects:

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