December 2019
Intermediate to advanced
510 pages
11h 33m
English
Controllers are the C part of the MVC pattern. They are a set of actions that usually handle requests from a client. You should bear in mind that what we are discussing in this chapter refers to the MVC stack that's defined by ASP.NET Core. Furthermore, if we take as reference the incoming requests, remember that they have already passed through the others middleware in the middleware pipeline and that they have already hit the MVC middleware.
The following diagram shows how a request is typically handled:

As we discussed in Chapter 1, REST 101 and Getting Started with ASP.NET Core, the incoming request is usually generated ...
Read now
Unlock full access