Practicing and exploring
Test your knowledge and understanding by answering some questions, getting some hands-on practice, and exploring this chapter’s topics with deeper research.
Exercise 3.1 – Online material
Microsoft has an official tutorial series, ASP.NET Core MVC with EF Core - tutorial series, available at the following link: https://learn.microsoft.com/en-us/aspnet/core/data/ef-mvc/.
Exercise 3.2 – Practice exercises
The following practice exercises help you to explore the topics in this chapter more deeply.
Practice implementing MVC by implementing a category detail page
The Northwind.Mvc
project has a home page that shows categories, but when the View button is clicked, the website returns a 404 Not Found
error, for example, for the following URL: https://localhost:5021/home/categorydetail/1.
Extend the Northwind.Mvc
project by adding the ability to show a detail page for a category.
For example, add an action method...