OData service without WCF data services
Is it possible to create an OData compliant RESTful web se开发者_C百科rvice on an MS platform without using WCF data services?
Sure, you can comply with the spec using plain old asp.net. Its way more work though. Why would you do this?
Yes and since time has passed since you originally asked the question it is now easier to create an OData Service without using WCF Data Services as you can use the ASP.NET Web API which can provide (somewhat limited) OData functionality when you expose IQueryable methods.
http://www.nuget.org/packages/microsoft.aspnet.webapi.odata
精彩评论