Presenting ASP.NET Core MVC
In this chapter, you will learn how to implement an application presentation layer. More specifically, you will learn how to implement a web application based on ASP.NET Core MVC.
ASP.NET Core is a .NET framework for implementing web applications. ASP.NET Core has been partially described in previous chapters, so this chapter will focus mainly on ASP.NET Core MVC. More specifically, this chapter will cover the following topics:
- Understanding the presentation layers of web applications
- Understanding the ASP.NET Core MVC structure
- What is new in the latest versions of ASP.NET Core?
- Understanding the connection between ASP.NET Core MVC and design principles
- Use case – implementing a web app in ASP.NET Core MVC
We will review and give further details on the structure of the ASP.NET Core framework, which, in part, was discussed in Chapter 14, Applying Service-Oriented Architectures with .NET Core, and Chapter...