Web API
Pipeline in MVC https://www.c-sharpcorner.com/article/mvc-architecture-its-pipeline4/ We can say that pipeline of MVC contains the following processes, Routing Controller Initialization Action Execution Result Execution View Initialization and Rendering Routing is the first step in ASP.NET MVC pipeline. After finding the route successfully, ProcessRequest() method is invoked While the ProcessRequest() method is invoked, it uses the IControllerFactory instance to create the controller for the URL request After initialization of controller it has the information about the action method, this detail of action method is passed to controller’s InvokeAction() method View Engine takes ViewResult type and renders it as a View and shows it by using IView MVC Model? It is basically a business entity which is used to represent the application data. it's the presentation layer of ASP.Net MVC. Controller The Controller is responsible for taking the end user request and loading the appropriat