In this chapter, I start the process of building a more realistic project that demonstrates how ASP.NET Core MVC and Entity Framework Core are used together. The project will be simple but realistic and focus on the most commonly used Entity Framework Core features. The application will be a variation on the SportsStore application that I use in many of my books, with an increased focus on data and data storage.
In this chapter, I build a simple self-contained ASP.NET Core MVC application. In the next chapter, I add Entity Framework Core and store the application ...