Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I install and use Entity Framework Core in Visual Studio Code?

I have already created the initial asp.net mvc web application template in visual studio code. And I can run the application in a browser at localhost:5000/ I can also see the views, controllers, viewmodels like the previous asp.net mvc core.

Now, how can I install and use entity framework core using visual studio code?

Thanks.

like image 548
Alexander Avatar asked Oct 15 '15 12:10

Alexander


2 Answers

VS Code is just an editor. It doesn't install EF (or any packages). You can install EF by editing your csproj file to contain this set of lines.

<ItemGroup>
   <PackageGroup Include="Microsoft.EntityFrameworkCore.SqlServer" Version="1.1.0" />
</ItemGroup>

VS Code may give you a prompt to "restore" pacakges. If not, call dotnet restore on command line.

Alternatively, on command line you can execute:

dotnet add package Microsoft.EntityFrameworkCore.SqlServer

See the "Getting Started" guide for more details on EF. To use EF, you need to write code. A full example is beyond the scope of a good StackOverflow answer and is subject to change as EF Core continually updates.

like image 87
natemcmaster Avatar answered Sep 29 '22 01:09

natemcmaster


1st : You need three line of code to install EntityFrameWork core and its dependencies.

2nd : install them in this form

dotnet add package Microsoft.EntityFrameworkCore -v 2.1.14

dotnet add package Microsoft.EntityFrameworkCore.tools -v 2.1.14

dotnet add package Microsoft.EntityFrameworkCore.SqlServer -v 2.1.14

I put a sample of them with version but you can get latest entityframework version if you remove version in last of line. like this.

dotnet add package Microsoft.EntityFrameworkCore

dotnet add package Microsoft.EntityFrameworkCore.tools

dotnet add package Microsoft.EntityFrameworkCore.SqlServer

3rd

Remember your .Ner Core version should be compatible with lastest version of EntityFrameWork core which you want to install.So if you have error either you have to install lastet version of .Net Core or install EntityFrameWork core with a compatible version with .Net Core.

Probably you are looking for EntityFrameWork core version here and also for .net Core version here

like image 42
Amin Saadati Avatar answered Sep 29 '22 00:09

Amin Saadati