-
Hello! I need help... My configs: Everywhere version 7.*, but only EF Core tools have version "Global, 6.0.8"... thanks in advance :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @RyT-13, EF Core Tools, also called just
So you should update your
|
Beta Was this translation helpful? Give feedback.
Hi @RyT-13, EF Core Tools, also called just
dotnet ef
is a .NET Tool executable for design time manipulation of your migrations, DbContexts, etc.Microsoft.EntityFrameworkCore.Design
andMicrosoft.EntityFrameworkCore.Tools
(they are almost identical so you can remove one of them) NuGets are a "host" part of the tools that should be available in your startup project and it's used as an entry point fordotnet ef
.So you should update your
dotnet ef
- to do so:dotnet tool update --global dotnet-ef --version 7.0.5
dotnet tool update dotnet-ef --version 7.0.5