无法识别术语“添加迁移”

Posted

技术标签:

【中文标题】无法识别术语“添加迁移”【英文标题】:The term "Add-Migration" is not recognized 【发布时间】:2016-11-05 12:26:08 【问题描述】:

我正在使用这个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

注意:我使用的是最新版本的 ASP.NET Core 1.0 和 VS2015 - 2016 年 6 月 27 日发布的更新 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%" ]
  

【问题讨论】:

请不要在标题中添加标签 请写下你的 project.json 我想看看你的包 @BassamAlugili 根据您的要求,我在帖子中添加了更新 2 以添加 peoject.json 文件的相关部分。如果您需要更多信息,请告诉我 你从@briceIam(EF 团队)那里得到了答案,我认为它会起作用! @BassamAlugili 我已在帖子的 UPDATE 2 部分中添加了 project.json 文件的全部内容。请在@bricelam 的回复下查看我的 cmets。我可能缺少什么? 【参考方案1】:

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

安装包 Microsoft.EntityFrameworkCore.Tools -Version 5.0.7

您也可以使用此链接安装最新版本: NuGet package link

.NET CLI 命令:

dotnet add package Microsoft.EntityFrameworkCore.Tools

如果问题仍然存在,请尝试重新启动 Visual Studio。

【讨论】:

我安装了 2.2.6 版,因为我仍在使用 Visual Studio 2017。 我还需要重启 Visual Studio 这是我第二次找到这个答案,但它并没有像第一次那样完全帮助我。现在我需要重新启动 VS 并且它起作用了。我花了一段时间才想起重启可能会解决问题。 我也犯了不重启Visual Studio的错误。这是一个重要的步骤,所有命令都在之后起作用。 +1 非常感谢。在 Visual Studio 2022 上工作。【参考方案2】:

尝试以下步骤:

1) 打开project.json 文件并删除 dependenciestools 部分中的所有 Microsoft.EntityFrameworkCore.Tools 引用。

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

3) 在依赖项部分下添加

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

4) 在工具部分下添加

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

5) 重新启动再次 Visual Studio 2015

6) 打开 PMC 并输入

Add-Migration $Your_First_Migration_Name$

发生这种情况是因为 PMC 在 Visual Studio 启动时识别了这些工具。

【讨论】:

我几乎无法在 VS2015 上完成一个小时的编码,而无需重新启动/重新安装某些东西......【参考方案3】:

确保在project.jsondependencies 部分中引用了Microsoft.EntityFrameworkCore.Tools。 NuGet 不会从 tools 部分加载包管理器命令。 (见NuGet/Home#3023)


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

【讨论】:

我在我的帖子的更新 2 中复制了整个 project.json 文件内容。 Microsoft.EntityFrameworkCore.Tools 也在依赖部分中。 Add-MigrationUpdate-Database 命令,按照教程中的说明在前一天晚上工作。但是,当我第二天早上对我的模型进行了微小的更改并再次尝试这些命令后尝试它们时,它们给出了我帖子中描述的错误消息。我什至从 SQL Server 中删除了 Migration 文件夹和相应的数据库,但是在运行这些命令后我得到了相同的错误消息。我可能缺少什么? 我也有这些症状。我正在使用 Visual Studio 2015 更新 3 尝试filing a bug on NuGet 具有可重复的步骤和大量环境信息。我已经在团队之前提到过这方面的问题,但他们永远无法重现。 奇怪,如果我从tools 中删除它并在之后重新添加它,这解决了我的问题。只需将其移至 dependencies 将导致以下错误消息:无法执行此命令,因为项目 'src\ 中未安装 'Microsoft.EntityFrameworkCore.Tools'。将“Microsoft.EntityFrameworkCore.Tools”添加到 project.json 中的“工具”部分。有关详细信息,请参阅go.microsoft.com/fwlink/?LinkId=798221。 我正在使用 VS2017 ASP.NET Core 并且遇到了同样的问题。这个答案也解决了!【参考方案4】:

同样的问题...由 dong 以下解决

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

似乎诀窍是在关闭 VS 之前关闭 PM Manager

【讨论】:

是的,重新加载 PM 和 VS 是一种解决方案,当我们在最新的 Visual Studio 中打开以前在旧版本中创建的项目时会发生这种情况。通过打开此类代码,VS 会尝试一些自动调整。这些调整可以是只能通过重新启动 PM 和 VS 才能看到正确的效果。【参考方案5】:

从 Asp.Net Core 5.0 的角度来看

在迁移项目中 安装以下内容:

添加对数据访问层 (DAL) 项目的引用(例如:如果有对 Auth 模型的引用)

在 Startup/Api 项目中 安装以下内容:

添加对迁移项目的引用。 添加对数据访问层 (DAL) 项目的引用(如果有)。

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

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

【讨论】:

【参考方案6】:

我也遇到了这个问题。我关闭并打开 VS2015 并“修复”了问题...

【讨论】:

【参考方案7】:

你必须知道你的Entity-Framework 版本是什么。 此外,您还必须检查project.json 并控制这些部分:

依赖项

检查:

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

本节:

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

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

之后proj.json 的第二部分在这里,在JSONTools 部分你有:

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

这部分代码也与您的Entity-FrameworkDependencies 部分中的最后一部分代码相关。

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

【讨论】:

【参考方案8】:

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

1) 工具 -> Nuget 包管理器 -> 包管理器设置

2) 常规标签

3) 清除所有 NuGet 缓存

4) 重启 Visual Studio

【讨论】:

【参考方案9】:

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

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

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

【讨论】:

对我来说,我使用的是相对路径 .\packages\Microsoft.EntityFrameworkCore.Tools.1.1.0\tools\init.ps1 这是因为 PM 的 Current Directory 已经是 Solution 目录了,但是对于我的工具包是解决方案的一部分。我个人认为这是最好的解决方案,因为没有重新启动、编辑、重新安装。它需要一点时间,并且有效。【参考方案10】:

我在 Visual Studio 2013 中遇到了这个问题。我重新安装了 NuGet 包管理器:

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

【讨论】:

【参考方案11】:

这对我有用: 从 Visual Studio 点击

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

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

Add-Migration InitialCreate

【讨论】:

【参考方案12】:

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

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

这在除一个项目之外的所有项目上都运行良好。我将工具中的条目更改为

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

然后运行dotnet restore。恢复完成后,Add-Migration工作正常。

【讨论】:

【参考方案13】:

在我的例子中,我通过 Nuget 添加了依赖项:

Microsoft.EntityFrameworkCore.Tools

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

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

【讨论】:

【参考方案14】:

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

我的目标是:

VisualStudioVersion = 14.0.25123.0

但我需要定位:

VisualStudioVersion = 14.0.25420.1

直接对解决方案文件进行更改后,EF Core cmdlet 开始在包管理器控制台中运行。

【讨论】:

感谢您的帮助。我使用的版本14.0.25421.03 Update 3 比你使用的还要高。【参考方案15】:

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

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

2)关闭 PM 控制台

3)重启Visual Studio

4) 在 PM 控制台中运行以下命令 点网恢复

5)添加-迁移初始迁移

成功了!!!

【讨论】:

【参考方案16】:

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

【讨论】:

【参考方案17】:

我认为答案需要在 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%" ]
  

【讨论】:

您可能还需要重新启动 Visual Studio。【参考方案18】:

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

C:\Users\&lt;YOUR_USER&gt;\.nuget\packages\Microsoft.EntityFrameworkCore.Tools\&lt;YOUR_INSTALLED_VERSION&gt;\tools\init.ps1

【讨论】:

【参考方案19】:

我尝试了上述所有操作,但没有运气。我下载了最新的 .net core 2.0 包并再次运行命令,它工作了。

【讨论】:

.net core 2.0 现在是否稳定,所以项目可以从1.1.1 升级到2.0 .NET Core 2.0 于 2017 年 8 月 14 日作为最终版本发布。 blogs.msdn.microsoft.com/dotnet/2017/08/14/…【参考方案20】:

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

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

(ps:Visual Studio 2019 .netCore 5)

【讨论】:

【参考方案21】:

尝试安装这些软件包:

    EntityFrameworkCore.Tools

    EntityFrameworkCore.Design

【讨论】:

您的答案可以通过额外的支持信息得到改进。请edit 添加更多详细信息,例如引用或文档,以便其他人可以确认您的答案是正确的。你可以找到更多关于如何写好答案的信息in the help center。【参考方案22】:

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

解决方案:

重新打开 Visual Studio 和克隆存储库。 别忘了双击解决方案文件来加载它。

【讨论】:

以上是关于无法识别术语“添加迁移”的主要内容,如果未能解决你的问题,请参考以下文章

TypeScript 安装/版本错误:无法识别术语“tsc”

YAML 管道中无法识别术语“System.DefaultWorkingDirectory”

无法识别颤振

图形验证码识别——图像预处理:二值化

vSAN集群 无法识别磁盘处理

电脑无法识别耳机怎么解决 电脑无法识别耳机解决方法