Restful api controller

RESTful controllers In this post we will explore how to create a restful controller with Asp.Net Core. We are going to look at it with an example of a controller that exposes some CRUD API to the outside world. To do this we are going to map the appropriate http Read more…

Introduction to Controllers

Intro to AspNetCore MVC Controllers In MVC every http request is handled by a Controller or rather a action method. These controllers are implemented as simple C# classes contained in your application. The Controller that is utilized to handle the incoming request is choosen by the routing system as I Read more…