In this final chapter on .NET Core, we take a deep look into ASP.NET Core Views, View Components, and Tag Helpers as you complete the user interface for the SpyStore Web application.
Introducing the “V” in ASP.NET Core
When building ASP.NET Core services, only the “M” (Models) and the “C” (Controllers) of the MVC pattern are used. The user interface is created using the “V”, or the Views of the MVC pattern. ...