- First, let's see the rows contained in our Book table in the Cookbook database on SQL Server:

- We can see in the OnConfiguring method of CookbookContext that we use SQL Server as the provider:

- Let's create an MVC Cookbook controller and a Books view to see all the rows of the Book table:

The Books view should look as follows:
- Now we will install the necessary packages to use the new InMemory provider for EF Core. We can ...