Create an OData v4 Endpoint Using ASP.NET Web API 2.2

The Open Data Protocol (OData) is a data access protocol for the web. OData provides a uniform way to query and manipulate data sets through CRUD operations (create, read, update, and delete).
 
ASP.NET Web API supports both v3 and v4 of the protocol. You can even have a v4 endpoint that runs side-by-side with a v3 endpoint.
 
This tutorial shows how to create an OData v4 endpoint that supports CRUD operations.
 
Continue here>>