Installing Entity Framework dependencies

Let's take a look at the following steps for installing Entity Framework dependencies:

  1. First, we will need to install the Entity Framework packages that our project will require. To do so, from the TextScoreDashboard project in Visual Studio, navigate to Tools -> NuGet Package Manager -> Package Manager Console.
  2. Now run the following install-package commands:
      Install-Package Microsoft.EntityFrameworkCore.SqlServer       Install-Package Microsoft.EntityFrameworkCore.Tools      Install-Package Microsoft.EntityFrameworkCore.Design       Install-Package Microsoft.EntityFrameworkCore.SqlServer.Design
  1. To verify that all the packages were installed, navigate to [ProjectName] -> References -> .NETCoreApp , and see the ...

Get Serverless computing in Azure with .NET now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.