Summary
In this chapter, you have been introduced to some of the app models that you can use to build practical applications using C# and .NET, and you have created two class libraries to define an entity data model for working with the Northwind
database.
In the following chapters, you will learn the details about how to build the following:
- Simple websites with static HTML pages and dynamic Razor Pages.
- Complex websites with the Model-View-Controller (MVC) design pattern.
- Complex websites with content that can be managed by end users with a web Content Management System (CMS).
- Web services that can be called by any platform that can make an HTTP request and client websites and apps that call those services.
- Intelligent apps that use machine learning to implement features like product recommendations.
- Blazor web user interface components that can be hosted either on the server or in the browser.
- Cross-platform mobile apps using Xamarin...