How to upgrade EF Core Tools

后端 未结 2 1233
陌清茗
陌清茗 2021-01-07 16:05

When I add-migration i got this warning:

The EF Core tools version \'2.1.1-rtm-30846\' is older than that of the runtime \'2.1.4-rtm-31024\'. Up         


        
2条回答
  •  执笔经年
    2021-01-07 16:56

    Update the tools using the package manager console:

    Install-Package Microsoft.EntityFrameworkCore.Tools -Version 2.1.4
    

    see this link https://www.nuget.org/packages/Microsoft.EntityFrameworkCore.Tools/

提交回复
热议问题