Philipp Schmid
Philipp Schmid

Reputation: 5828

Which OData Provider to use

I have successfully used the WCF Data Services Toolkit in the past, but I realize that it might be a dead project (last modification on Codeplex was May 2011).

The successor seems to be the Microsoft ASP.NET Web API OData provider which is being developed as part of the broader Web API effort.

I need to expose a custom OData service as part of a SharePoint solution, so easy packaging inside a WSP would be preferable. I have tried to expose the WCF DST but haven't succeeded yet.

Is the Web API OData provider ready for production use (in a few months time)?

Any pointers to resources that show how to install a Web API OData endpoint as part of a SharePoint WSP?

Note: SharePoint 2010 (our current production target) is built in .NET 3.5 which might prevent Web API from being used.

Upvotes: 1

Views: 830

Answers (1)

Filip W
Filip W

Reputation: 27187

Definitely Microsoft ASP.NET Web API OData - it's currently at RC on Nuget, but you can grab the latest bits off the nightly build feed - the nightly builds already contain a much more mature version.

The Nuget nightly build feed is http://www.myget.org/F/aspnetwebstacknightly/

The official release will ship soon - (no exact date set yet) but the team is targeting mid-February.

Upvotes: 3

Related Questions