如何升级EF Core Tools

ste*_*stt 36 entity-framework asp.net-core

当我add-migration收到这个警告时:

The EF Core tools version '2.1.1-rtm-30846' is older than that of the runtime '2.1.4-rtm-31024'. Update the tools for the latest features and bug fixes.
Run Code Online (Sandbox Code Playgroud)

我没有找到任何信息如何更新这个,除了更新DotNET核心SDK,但这对我没有用.

小智 60

使用包管理器控制台更新工具:

Install-Package Microsoft.EntityFrameworkCore.Tools -Version 2.1.4
Run Code Online (Sandbox Code Playgroud)

看到这个链接https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Tools/


Dan*_*aka 37

如果您使用命令行(CMD、Powershell、bash 等),您可以轻松键入以下内容以更新到最新版本:

dotnet tool update --global dotnet-ef
Run Code Online (Sandbox Code Playgroud)

如果您想更新到非常特定的版本,请执行以下操作:

dotnet tool update --global dotnet-ef --version VERSION_NUMBER
Run Code Online (Sandbox Code Playgroud)

例子:

dotnet tool update --global dotnet-ef --version 3.1.0
Run Code Online (Sandbox Code Playgroud)