📜  asp.net core update-database 指定环境 - C# (1)

📅  最后修改于: 2023-12-03 14:39:22.258000             🧑  作者: Mango

使用 asp.net core update-database 指定环境

在 asp.net core 项目中,update-database 命令可用于应用迁移。在开发过程中,我们可能需要在特定环境中使用迁移。本文将介绍如何使用 update-database 命令指定环境。

步骤
  1. 在 asp.net core 项目中,打开终端。输入以下命令:

    dotnet ef migrations add {MigrationName} -- {EnvironmentName}
    

    其中,{MigrationName} 为要创建的迁移的名称,{EnvironmentName} 为要使用的环境的名称。

  2. 运行以下命令来更新数据库:

    dotnet ef database update -- {EnvironmentName}
    

    其中,{EnvironmentName} 为要使用的环境的名称。

示例
  1. 创建一个名为 "Development" 的迁移:

    dotnet ef migrations add InitialCreate -- Development
    
  2. 更新名为 "Development" 的数据库:

    dotnet ef database update -- Development
    
结论

使用 asp.net core update-database 命令可以在特定环境中更新数据库。只需在命令后添加需要使用的环境名称即可。