未安装Microsoft.EntityFrameworkCore.Design

时间:2017-01-11 15:00:11

标签: c# asp.net-web-api asp.net-core entity-framework-core

我正在尝试使用PM控制台使用EntityFramework Core运行命令Add-Migration(代码优先方法)。我无法通过这个错误: 无法执行此命令,因为未安装Microsoft.EntityFrameworkCore.Design。安装与已安装的Microsoft.EntityFrameworkCore版本匹配的软件包版本,然后重试。 这是我的project.json文件:

    {
  "dependencies": {
    "Microsoft.NETCore.App": "1.1.0",
    "Microsoft.AspNetCore.Mvc": "1.0.1",
    "Microsoft.AspNetCore.Routing": "1.1.0",
    "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
    "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
    "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
    "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
    "Microsoft.Extensions.Configuration.Json": "1.0.0",
    "Microsoft.Extensions.Logging": "1.1.0",
    "Microsoft.Extensions.Logging.Console": "1.0.0",
    "Microsoft.Extensions.Logging.Debug": "1.0.0",
    "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
    "Microsoft.EntityFrameworkCore": "1.1.0",
    "Microsoft.EntityFrameworkCore.SqlServer": "1.1.0",
    "Microsoft.EntityFrameworkCore.Design": "1.1.0"
  },
  "tools": {
    "Microsoft.EntityFrameworkCore.Tools.DotNet": "1.1.0-preview4-final",
    "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
  },

  "frameworks": {
    "netcoreapp1.0": {
      "imports": [
        "dotnet5.6",
        "portable-net45+win8"
      ]
    }
  },
  "runtimes": {
    "win10-x64": {}
  },

  "buildOptions": {
    "emitEntryPoint": true,
    "preserveCompilationContext": true
  },

  "runtimeOptions": {
    "configProperties": {
      "System.GC.Server": true
    }
  },

  "publishOptions": {
    "include": [
      "wwwroot",
      "**/*.cshtml",
      "appsettings.json",
      "web.config"
    ]
  },

  "scripts": {
    "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
  }
}

正如您所看到的,我的依赖项和工具是1.1.0版。 这些是我的参考: References

我尝试过的事情:

  • 关闭/重新打开Visual Studio
  • dotnet restore
  • 我的启动文件在ConfigServices中注册了我的连接字符串

我已经安装了所有我想要的东西(我知道)。 我也在StackOverflow上查看了这个问题的其他帖子,但没有用。

任何人都可以通过这个?我感谢任何帮助。

2 个答案:

答案 0 :(得分:5)

首先,修复netcoreapp1.0"Microsoft.NETCore.App": "1.1.0"

之间的不一致

其次,运行PM-Console命令需要Microsoft.EntityFrameworkCore.Tools

现有Microsoft.EntityFrameworkCore.Tools.DotNet适用于dotnet CLI命令。您可以从命令行创建运行dotnet ef migrations add <name>的迁移。

有关使用PM和/或CLI enter image description here

的详细信息

答案 1 :(得分:1)

还有另一种方法可以做到这一点(.Net Core 3.1):

我们需要使用 DbContext 的工厂来在设计时创建迁移。

我们实现了 IDesignTimeDbContextFactory 接口,因为按照惯例,当在 DbContext 同一个项目或启动项目中发现实现了这个接口的类时,EFCore 会放弃其他创建 DbContext 的方式,将使用工厂。

查看实现示例:

  public class MyDbContextFactory : IDesignTimeDbContextFactory<MyDbContext>
  {

    public MyDbContext CreateDbContext(string[] args)
    {
      var optionsBuilder = new DbContextOptionsBuilder<MyDbContext>();

      optionsBuilder.UseSqlServer("Your ConnectionString Here");

      return new MyDbContext(optionsBuilder.Options);
    }

执行此操作后,将包含 DbContext 的项目设置为启动和默认项目并尝试创建迁移:

//.Net Core CLI:
dotnet ef migrations Add Initial -p .\src\Data\Data.csproj -s .\src\Data\Data.csproj

//Package Manager Console
Add-Migration Initial -p .\src\Data\Data.csproj -s .\src\Data\Data.csproj