当我在VS 2017包管理器控制台中使用dotnet ef工具时,我得到了一个需要更新ef核心工具的警告消息:

PM> dotnet ef migrations list -s ../RideMonitorSite

The EF Core tools version '2.1.1-rtm-30846' is older than that of the runtime '2.1.2-rtm-30932'. Update the tools for the latest features and bug fixes.
20180831043252_Initial

但是我的csproj文件有这样的条目:

  <ItemGroup>
    <DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.1.2" />
  </ItemGroup>

我已经确认安装的版本实际上已经过时了:

PM> dotnet ef --version
Entity Framework Core .NET Command-line Tools
2.1.1-rtm-30846

那么我该怎么更新工具呢?顺便说一句,我在其他答案中看到过一个过时的全局。Json文件会导致这个问题。但是我没有全局。Json文件在解决方案的任何地方。


当前回答

在您的应用程序中,Dot.net核心库版本为2.1.2,而您正在使用实体框架核心(2.1.1)的2.1.1。 因此,更新你的库版本,它应该等于。net核心版本(2.1.2)。

其他回答

试试这个: 安装包Microsoft.EntityFrameworkCore.Tools

如果问题仍然存在,则执行以下命令: 更新包Microsoft.EntityFrameworkCore.Tools

我的解决方案是从微软https://www.nuget.org/packages/dotnet-ef安装工具dotnet-ef。它使用相同的命令,但没有警告。变化是使用dotnet-ef而不是dotnet ef。

如果你已经安装了。net-ef,那么使用 Dotnet工具更新——global Dotnet -ef——version N.N.N (N.N.N您要更新到的版本)

对于。net 6,就是这样

dotnet tool update --global dotnet-ef --version 6.0.0

我找不到具体如何更新包,但在包管理器控制台中,我运行了“update-package”。它运行并更新了项目中引用的所有包,包括EF核心工具。这对您来说可能不理想,因为这可能会更新您不想要的包。

我得到这个错误多次我的包是最新的NuGet包管理器 所以我用note pad修改了(.csproj)到所需的版本,它解决了我的问题。