Retrieving and manipulating Entities with no related data using Web API and Entity Framework is quite easy and most times, by the time you create a Web API controller using a specific Model class and a DbContext instance you won’t… Read More ›
Web API
Exchange Json Data with Web API
Web API is the ultimate .NET Framework which allows you to exchange data with a service through HTTP requests. You can send data to it or get back different types of data but the most common usage is the Json… Read More ›
Web API basic CRUD Operations following HTTP principles
Web API makes building HTTP Services quite easy and pleasant since most of the hard work is taking place under it’s Framework’s umbrella. For example, when a client application makes a call to a Web API client, Web API can… Read More ›
Starting with Web API in ASP.NET MVC
Web API is the perfect platform for building RESTful applications on the .NET Framework. If you want to build HTTP services that can reach any kind of client, Web API is what you need. Many developers are confused and cannot… Read More ›