从 Linqpad 调用 OData 服务操作
有谁知道是否可能,如果可以,通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不幸的是,这是不可能的:LINQPad 依赖于 System.Data.Services.Design.dll 中的 .NET WCF 客户端和 EntityClassGenerator,它们并不真正支持服务操作(从 Framework 4.0 开始)。
此阶段的解决方法与在 Visual Studio 中编码时所做的相同,并且是 这里描述得很好。
因此,您可以在 LINQPad 中键入以下内容来调用操作 GetContacts(string firstName):
或者,如果服务返回对象序列:
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):
or, if the service returns a sequence of objects: