无法识别“添加迁移”一词

时间:2016-07-03 19:05:51

标签: visual-studio-2015 asp.net-core entity-framework-core

我正在使用此MSDN Tutorial在VS2015中运行昨天成功运行的命令PM> Add-Migration MyFirstMigration -context BloggingContext,但今天它发出了以下错误,其他用户here也指出了这一错误。我甚至从解决方案资源管理器中删除了Migrations文件夹,并从SQL Express 2014 on Win 8.1删除了相应的数据库,但是同样的错误。即使我运行Add-Migration MyFirstMigration,我也会遇到同样的错误:

Add-Migration : The term 'Add-Migration' is not recognized as the name of a cmdlet, function, script file, or operable program. 
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ Add-Migration MyFirstMigration -context BloggingContext
+ ~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Add-Migration:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

注意:我正在使用2016年6月27日发布的最新版本的ASP.NET Core 1.0和VS2015 - Update 3.

更新

使用命令窗口时,以下命令可以在Windows资源管理器中的项目目录中正常工作:

> dotnet ef migrations add MyFirstMigration --context BloggingContext
> dotnet ef database update --context BloggingContext

更新2a

以下是project.json文件:

{
  "userSecretsId": "aspnet-ASPCore_RTM_CodeFirst_test-bef835d9-9831-41a8-bc3a-cd2f1477a880",

  "dependencies": {
    "Microsoft.NETCore.App": {
      "version": "1.0.0",
      "type": "platform"
    },
    "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
    "Microsoft.AspNetCore.Diagnostics": "1.0.0",
    "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0",
    "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
    "Microsoft.AspNetCore.Mvc": "1.0.0",
    "Microsoft.AspNetCore.Razor.Tools": {
      "version": "1.0.0-preview2-final",
      "type": "build"
    },
    "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
    "Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
    "Microsoft.AspNetCore.StaticFiles": "1.0.0",
    "Microsoft.EntityFrameworkCore.SqlServer": "1.0.0",
    "Microsoft.EntityFrameworkCore.SqlServer.Design": {
      "version": "1.0.0",
      "type": "build"
    },
    "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final",
    "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
    "Microsoft.Extensions.Configuration.Json": "1.0.0",
    "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
    "Microsoft.Extensions.Logging": "1.0.0",
    "Microsoft.Extensions.Logging.Console": "1.0.0",
    "Microsoft.Extensions.Logging.Debug": "1.0.0",
    "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
    "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0",
    "Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
      "version": "1.0.0-preview2-final",
      "type": "build"
    },
    "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": {
      "version": "1.0.0-preview2-final",
      "type": "build"
    }
  },

  "tools": {
    "BundlerMinifier.Core": "2.0.238",
    "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
    "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
    "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final",
    "Microsoft.Extensions.SecretManager.Tools": "1.0.0-preview2-final",
    "Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
      "version": "1.0.0-preview2-final",
      "imports": [
        "portable-net45+win8"
      ]
    }
  },

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

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

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

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

  "scripts": {
    "prepublish": [ "bower install", "dotnet bundle" ],
    "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
  }
}

21 个答案:

答案 0 :(得分:38)

请尝试以下步骤:

1)打开project.json文件并删除来自依赖项工具部分的所有Microsoft.EntityFrameworkCore.Tools引用。

2)关闭程序包管理器控制台( PMC )和重新启动 Visual Studio

3)添加 依赖部分:

 "Microsoft.EntityFrameworkCore.Tools": {
  "version": "1.0.0-preview2-final",
  "type": "build"
 }

4)添加 tools 部分

"Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final"

5)重新启动再次使用Visual Studio 2015

6)打开 PMC 并输入

Add-Migration $Your_First_Migration_Name$

这是因为 PMC 在Visual Studio启动时识别工具。

答案 1 :(得分:21)

确保ORA-01749: you may not GRANT/REVOKE privileges to/from yourself ORA-06512: at "QT.CREATE_TABLE_TEST", line 21 的{​​{1}}部分中引用了Microsoft.EntityFrameworkCore.Tools。 NuGet不会从dependencies部分加载程序包管理器命令。 (见NuGet/Home#3023

project.json

答案 2 :(得分:10)

同样的问题......由以下

解决

1。)关闭下午经理 2.)关闭Visual Studio 3.)打开Visual Studio 4.)打开下午经理

似乎诀窍是在关闭VS

之前关闭PM Manager

答案 3 :(得分:7)

我也遇到了这个问题。我关闭并打开VS2015并且它已经修复了#34;问题......

答案 4 :(得分:5)

从 Asp.Net Core 5.0 的角度

在迁移项目中 安装以下内容: NuGets to be installed in Migrations project

  • 添加对 DAL 项目的引用(例如:如果有对 Auth 模型的引用)

在 Startup/Api 项目中 安装以下内容: NuGets to be installed in startup/Api project

  • 添加对您的迁移项目的引用。
  • 添加对 DAL 项目的引用(如果有)。

使用 Startup.ConfigureServices(IServiceCollection services) 中的以下代码行确保您已将 DbContext 派生类型添加到服务集合:

services.AddDbContext<YourDbContext>(options => 
                  options.UseSqlServer(Configuration.GetConnectionString("YourDb"),
                                      x=>x.MigrationsAssembly("Your.Migrations")));

答案 5 :(得分:5)

您必须知道您的Entity-Framework版本是什么。 此外,之后您必须检查project.json并控制以下部分:

依赖项

检查:

Microsoft.EntityFrameworkCore.Tools": {
  "version": "1.0.0-preview2-final",
  "type": "build"
},

本节:

  

“版本”:“ 1.0.0-preview2-final”,

与您的Entity-Framework的版本有关,您必须对此进行更改。

之后是proj.json的第二部分,在Tools的{​​{1}}部分中,您具有:

JSON

这部分代码还与您的"Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final", Dependencies 部分中的代码的最后一部分有关。

注意:完成此问题后,您应该关闭Entity-Framework并重新启动Visual Studio。

答案 6 :(得分:5)

我必须做什么......

1)工具 - &gt; Nuget Package Manger - &gt;包管理器设置

2)常规标签

3)清除所有NuGet缓存

4)重新启动Visual Studio

答案 7 :(得分:5)

我在Visual Studio 2013中遇到此问题。我重新安装了NuGet Package Manager:

https://marketplace.visualstudio.com/items?itemName=NuGetTeam.NuGetPackageManagerforVisualStudio2013

答案 8 :(得分:4)

尝试初始化Microsoft.EntityFrameworkCore.Tools。 在PM执行

C:\Users\<username>\.nuget\packages\Microsoft.EntityFrameworkCore.Tools\1.0.0-preview2-final\tools\init.ps1.

它帮助我解决了同样的问题。 这些工具的版本可能不同。它取决于您在项目中使用的内容。

答案 9 :(得分:2)

就这么简单。

只需从nuget安装Microsoft.EntityFrameworkCore.Tools软件包:

  

安装软件包Microsoft.EntityFrameworkCore.Tools-版本2.1.3

您还可以使用此链接来安装最新版本: Nuget package link

答案 10 :(得分:2)

我遇到了同样的问题。我的大多数项目在工具中都有相同的东西。

ob_start()

除了一个项目之外,这个项目都很好。我将工具中的条目更改为

"tools": {
    "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final"
}

然后跑"tools": { "Microsoft.EntityFrameworkCore.Tools": { "version": "1.0.0-preview2-final", "type": "build" } } 。恢复完成后,dotnet restore正常工作。

答案 11 :(得分:2)

我遇到了同样的问题,发现它是解决方案文件中的Visual Studio版本问题。

我的目标是:

VisualStudioVersion = 14.0.25123.0

但我需要定位:

VisualStudioVersion = 14.0.25420.1

将更改直接更改为解决方案文件后,EF Core cmdlet开始在程序包管理器控制台中工作。

答案 12 :(得分:1)

这是我遵循的步骤,它解决了问题

1)将我的Power shell从版本2升级到3

2)关闭PM控制台

3)重新启动Visual Studio

4)在PM控制台中运行以下命令  dotnet restore

5)Add-Migration InitialMigration

它奏效了!!!

答案 13 :(得分:1)

转到包管理器控制台(在visual studio中)并执行以下命令

  

C:\Users\<YOUR_USER>\.nuget\packages\Microsoft.EntityFrameworkCore.Tools\<YOUR_INSTALLED_VERSION>\tools\init.ps1

答案 14 :(得分:1)

我遇到了这个问题,以前的解决方案都没有帮助我。我的问题实际上是由于我的Windows 7机器上有一个过时的PowerShell版本 - 一旦我更新到PowerShell 5它就开始工作了。

答案 15 :(得分:1)

就我而言,解决方案中出现了我没有想到的错误。 我尝试重建但没有奏效。 这是你应该做的

  • 关闭 Visual Studio 并重新打开。
  • 清理解决方案并重新构建。
  • 它将显示解决方案中的错误。
  • 解决错误并重试。

(附注:Visual Studio 2019 .netCore 5)

答案 16 :(得分:0)

我认为答案需要在2017年进行更新,因为MS已经做了一些(破坏性的)更改,这里有详细说明。

https://github.com/aspnet/EntityFramework/issues/7053

总而言之,您现在需要在工具部分中引用EntityFrameWorkCore.Tools.DotNet,如下所示

“Microsoft.EntityFrameworkCore.Tools.DotNet”:“1.0.0”

我还在下面发布了一个有效的project.json文件,以防有人遇到问题。

{
  "dependencies": {
    "Microsoft.NETCore.App": {
      "version": "1.0.1",
      "type": "platform"
    },
    "Microsoft.AspNetCore.Diagnostics": "1.0.0",
    "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
    "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
    "Microsoft.Extensions.Logging.Console": "1.0.0",
    "Microsoft.AspNetCore.Razor.Tools": {
      "version": "1.0.0-preview2-final",
      "type": "build"
    },
    "Microsoft.AspNetCore.StaticFiles": "1.0.0",
    "Microsoft.AspNetCore.Mvc": "1.0.1",
    "Microsoft.EntityFrameworkCore.SqlServer": "1.0.1",
    "Microsoft.Extensions.Configuration.Json": "1.0.1",
    "Microsoft.EntityFrameworkCore.Tools": {
      "version": "1.0.0-preview2-final",
      "type": "build"
    }
  },

  "tools": {
    "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
    "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
    "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final",
    "Microsoft.EntityFrameworkCore.Tools.DotNet": "1.0.0"
  },

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

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

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

  "publishOptions": {
    "include": [
      "wwwroot",
      "web.config"
    ]
  },

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

答案 17 :(得分:0)

我尝试了以上所有并且没有运气。我下载了最新的.net核心2.0软件包,然后再次运行命令,它运行良好。

答案 18 :(得分:0)

在我的情况下,我通过Nuget添加了依赖项:

Microsoft.EntityFrameworkCore.Tools

然后通过程序包管理器控制台运行:

add-migration Initial -Context "ContextName" -StartupProject "EntryProject.Name" -Project "MigrationProject.Name"

答案 19 :(得分:0)

这对我有用: 在Visual Studio中,点击

工具-> NuGet软件包管理器->软件包管理器控制台

enter image description here

然后您可以运行Add-Migration,例如:

Add-Migration InitialCreate

答案 20 :(得分:-1)

我犯了一个非常愚蠢的错误!

解决方案:

  • 重新打开 Visual Studio 和克隆存储库。
  • 不要忘记双击解决方案文件以加载它。