ASP.NET MVC 中类似 OData 的路由
有没有一种简单的方法可以使用基于 OData uri 约定的路由来创建 asp.net mvc 应用程序 http ://www.odata.org/developers/protocols/uri-conventions?
这就像只是为规范添加新的 html 格式。
或者可能是将 URL 动态转换为 LINQ 查询的另一种方法?
Is there a simple way for creating asp.net mvc application with routes based on OData uri conventions http://www.odata.org/developers/protocols/uri-conventions ?
It's like a just adding new html format for specification.
Or may be another way for converting Urls into LINQ queries dynamically?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用域服务类,向导允许您将其方法公开为开箱即用的 Odata。只是因为它的 MVC 并不意味着您不能附加到 WCF 等。
请查看此博客文章 http://blogs.msdn.com/b/brada/archive/2010/03/16/silverlight -4-ria-services-ready-for-business-exducing-odata-services.aspx
它解释了如何使用域服务类来公开 ODATA。
You could use a Domain Service Class which the wizard allows you to expose its methods as Odata out of the box. Just cause its MVC does not mean you can not attach on WCF etc.
Take a look at this blog post http://blogs.msdn.com/b/brada/archive/2010/03/16/silverlight-4-ria-services-ready-for-business-exposing-odata-services.aspx
It explains how to use A Domain Service class to expose ODATA.