Create a Full Stack Web application using ASP.NET Entity Framework Core that performs CRUD operations on Class entities that share a One to many relationship with Instructors. Instructors have can many classes and Days can have many classes.
By the end of this tutorial you will have a working web application that performs Create, Read, Update, and Delete operations on Class entities and saves the data in a SQL Server localdb database.
Additionally, this tutorial introduces how to use the repository pattern for a data access layer solution.