如何将 OData 与 RIA 服务结合使用
使用 RIA 服务时,如何指定要使用 OData 而不是专有格式?
When using RIA services, how do I specify I want to use OData instead of a proprietary format?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我是 Odata 新手,但目前从事 RIA 工作,我在 Brad Abrams 博客中找到了这篇文章
http://blogs.msdn.com/brada/archive/2010/03/16/silverlight-4-ria -services-ready-for-business-exducing-odata-services.aspx
完成服务等所有准备工作后,您可以通过调用 DomainService 的 URL 来指定使用 OData,例如
"http://localhost:7777/Sample-App-GreatDomainService.svc/OData/YourObject "
其中,
这将在您的项目中获得“YourObject”类型的 Atom Feed 数据。
跳这个帮助。 ^^
I'm new with Odata but currently works on RIA and I found the article from Brad Abrams blog at
http://blogs.msdn.com/brada/archive/2010/03/16/silverlight-4-ria-services-ready-for-business-exposing-odata-services.aspx
After finished prepare everything such a service, you can specify to use OData by calling URL to the DomainService like
"http://localhost:7777/Sample-App-GreatDomainService.svc/OData/YourObject"
Which,
This will get an Atom Feed data of type "YourObject" in your project.
Hop this help. ^ ^