OData Web API (i.e., ASP.NET Web API OData) is a server library built upon ODataLib and Web API.
The master branch has the following libraries, and the packages are available from NuGet or MyGet:
- OData Web API v4 (namespace
System.Web.OData
) - OData Web API v3 (namespace
System.Web.Http.OData
) - vNext (namespace
Microsoft.AspNet.OData
)
cd OData
build
Each solution contains some test projects. Test projects use xUnit runner nuget package. Open the project, build it, and then test cases should appear in test explorer. Run all the tests in the test explorer. For running end-to-end tests you must open the solution as Administrator. More detail at this.
- In your NuGet Package Manager settings add the following package source:
- Package IDs
- Choose: Include Prerelease
- OData v4: Microsoft.AspNet.OData
- OData v3: Microsoft.AspNet.WebApi.OData
Please refer to the CONTRIBUTION.md.
Please refer to the ODataSamples WebApi.
Please refer to the How to debug.