OData Web API (i.e., ASP.NET Web API OData) is a server library built upon ODataLib and Web API.
The project has a few branches, such as master, vNext, gh-pages.
The master branch has the following libraries, and the packages are available from NuGet or MyGet:
- OData v4 Web API (namespace
System.Web.OData
) - OData v3 Web API (namespace
System.Web.Http.OData
) - vNext (namespace
Microsoft.AspNet.OData
)
The vNext branch contains the latest code of OData vNext Web API.
The gh-pages branch contains the documenation source - in Markdown format - of the OData Web API.
cd OData
build.cmd
Each solution contains some test projects. Test projects use xUnit runner nuget package.
Tests will not run correctly unless SkipStrongNames is Enabled. Please run
build.cmd EnableSkipStrongNames
build.cmd
build project, and run unit tests.
To run end-to-end tests, you need to open an elevated - Run as administrator - command prompt
build.cmd e2eV4
build projects, run unit tests, and OData v4 end-to-end tests.build.cmd e2eV3
build projects, run unit tests, and OData v3 end-to-end tests.build.cmd full
build projects, run unit tests, OData v4 and v3 end-to-end tests.
To disable the SkipStrongNames:
build.cmd DisableSkipStrongNames
Open the project, build it, and then test cases should appear in test explorer. If not, this is because the assemblies are delay signed and you're missing the private key so xunit will not load them in Visual Studio. To fix, please run build.cmd EnableSkipStrongNames
. 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 visit the OData Web API pages.
Please refer to the ODataSamples WebApi.
Please refer to the How to debug.