zoukankan      html  css  js  c++  java
  • EntityFramework:EF Migrations Command Reference

    Entity Framework Migrations are handled from the package manager console in Visual Studio. The usage is shown in various tutorials, but I haven’t found a complete list of the commands available and their usage, so I created my own. There are four available commands.

    • Enable-Migrations: Enables Code First Migrations in a project.
    • Add-Migration: Scaffolds a migration script for any pending model changes.
    • Update-Database: Applies any pending migrations to the database.
    • Get-Migrations: Displays the migrations that have been applied to the target database.

    The information here is the output of running get-help command-name -detailed for each of the commands in the package manager console (running EF 4.3.1). I’ve also added some own comments where I think some information is missing. My own comments are placed under the Additional Information heading.

    Please note that all commands should be entered on the same line. I’ve added line breaks to avoid horizontal scrollbars.

    Enable-Migrations

    Enables Code First Migrations in a project.

    Syntax

    Enable-Migrations [-EnableAutomaticMigrations] [[-ProjectName] <String>]
      [-Force] [<CommonParameters>]

    Description

    Enables Migrations by scaffolding a migrations configuration class in the project. If the  target database was created by an initializer, an initial migration will be created (unless automatic migrations are enabled via the EnableAutomaticMigrations parameter).

    Parameters

    -ENABLEAUTOMATICMIGRATIONS

    Specifies whether automatic migrations will be enabled in the scaffolded migrations configuration. If ommitted, automatic migrations will be disabled.

    -PROJECTNAME <STRING>

    Specifies the project that the scaffolded migrations configuration class will be added to. If omitted, the default project selected in package manager console is used.

    -FORCE

    Specifies that the migrations configuration be overwritten when running more than once for given project.

    <COMMONPARAMETERS>

    This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, type: get-help about_commonparameters.

    Remarks

    To see the examples, type: get-help Enable-Migrations -examples.
    For more information, type: get-help Enable-Migrations -detailed.
    For technical information, type: get-help Enable-Migrations -full.

    Additional Information

    The flag for enabling automatic migrations is saved in the MigrationsConfiguration.cs file, in the constructor. To later change the option, just change the assignment in the file.

    public Configuration()
    {
        AutomaticMigrationsEnabled = false;
    }

    Add-Migration

    Scaffolds a migration script for any pending model changes.

    Syntax

    Add-Migration [-Name] <String> [-Force]
      [-ProjectName <String>] [-StartUpProjectName <String>]
      [-ConfigurationTypeName <String>] [-ConnectionStringName <String>]
      [-IgnoreChanges] [<CommonParameters>]
     
    Add-Migration [-Name] <String> [-Force]
      [-ProjectName <String>] [-StartUpProjectName <String>]
      [-ConfigurationTypeName <String>] -ConnectionString <String>
      -ConnectionProviderName <String> [-IgnoreChanges] [<Common Parameters>]

    Description

    Scaffolds a new migration script and adds it to the project.

    Parameters

    -NAME <STRING>

    Specifies the name of the custom script.

    -FORCE

    Specifies that the migration user code be overwritten when re-scaffolding an existing migration.

    -PROJECTNAME <STRING>

    Specifies the project that contains the migration configuration type to be used. If ommitted, the default project selected in package manager console is used.

    -STARTUPPROJECTNAME <STRING>

    Specifies the configuration file to use for named connection strings. If omitted, the specified project’s configuration file is used.

    -CONFIGURATIONTYPENAME <STRING>

    Specifies the migrations configuration to use. If omitted, migrations will attempt to locate a single migrations configuration type in the target project.

    -CONNECTIONSTRINGNAME <STRING>

    Specifies the name of a connection string to use from the application’s configuration file.

    -CONNECTIONSTRING <STRING>

    Specifies the the connection string to use. If omitted, the context’s default connection will be used.

    -CONNECTIONPROVIDERNAME <STRING>

    Specifies the provider invariant name of the connection string.

    -IGNORECHANGES

    Scaffolds an empty migration ignoring any pending changes detected in the current model. This can be used to create an initial, empty migration to enable Migrations for an existing database. N.B. Doing this assumes that the target database schema is compatible with the current model.

    <COMMONPARAMETERS>

    This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, type: get-help about_commonparameters.

    Remarks

    To see the examples, type: get-help Add-Migration -examples.
    For more information, type: get-help Add-Migration -detailed.
    For technical information, type: get-help Add-Migration -full.

    Update-Database

    Applies any pending migrations to the database.

    Syntax

    Update-Database [-SourceMigration <String>]
      [-TargetMigration <String>] [-Script] [-Force] [-ProjectName <String>]
      [-StartUpProjectName <String>] [-ConfigurationTypeName <String>]
      [-ConnectionStringName <String>] [<CommonParameters>]
     
    Update-Database [-SourceMigration <String>] [-TargetMigration <String>]
      [-Script] [-Force] [-ProjectName <String>] [-StartUpProjectName <String>]
      [-ConfigurationTypeName <String>] -ConnectionString <String>
      -ConnectionProviderName <String> [<CommonParameters>]

    Description

    Updates the database to the current model by applying pending migrations.

    Parameters

    -SOURCEMIGRATION <STRING>

    Only valid with -Script. Specifies the name of a particular migration to use as the update’s starting point. If ommitted, the last applied migration in the database will be used.

    -TARGETMIGRATION <STRING>

    Specifies the name of a particular migration to update the database to. If ommitted, the current model will be used.

    -SCRIPT

    Generate a SQL script rather than executing the pending changes directly.

    -FORCE

    Specifies that data loss is acceptable during automatic migration of the
    database.

    -PROJECTNAME <STRING>

    Specifies the project that contains the migration configuration type to be used. If ommitted, the default project selected in package manager console is used.

    -STARTUPPROJECTNAME <STRING>

    Specifies the configuration file to use for named connection strings. If omitted, the specified project’s configuration file is used.

    -CONFIGURATIONTYPENAME <STRING>

    Specifies the migrations configuration to use. If omitted, migrations will attempt to locate a single migrations configuration type in the target project.

    -CONNECTIONSTRINGNAME <STRING>

    Specifies the name of a connection string to use from the application’s configuration file.

    -CONNECTIONSTRING <STRING>

    Specifies the the connection string to use. If omitted, the context’s default connection will be used.

    -CONNECTIONPROVIDERNAME <STRING>

    Specifies the provider invariant name of the connection string.

    <COMMONPARAMETERS>

    This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, type: get-help about_commonparameters.

    Remarks

    To see the examples, type: get-help Update-Database -examples.
    For more information, type: get-help Update-Database -detailed.
    For technical information, type: get-help Update-Database -full.

    Additional Information

    The command always runs any pending code-based migrations first. If the database is still incompatible with the model the additional changes required are applied as an separate automatic migration step if automatic migrations are enabled. If automatic migrations are disabled an error message is shown.

    Get-Migrations

    Displays the migrations that have been applied to the target database.

    Syntax

    Get-Migrations [-ProjectName <String>] [-StartUpProjectName <String>]
      [-ConfigurationTypeName <String>] [-ConnectionStringName <String>]
      [<CommonParameters>]
     
    Get-Migrations [-ProjectName <String>] [-StartUpProjectName <String>]
      [-ConfigurationTypeName <String>] -ConnectionString <String>
      -ConnectionProviderName <String> [<CommonParameters>]

    Description

    Displays the migrations that have been applied to the target database.

    Parameters

    -PROJECTNAME <STRING>

    Specifies the project that contains the migration configuration type to be used. If ommitted, the default project selected in package manager console is used.

    -STARTUPPROJECTNAME <STRING>

    Specifies the configuration file to use for named connection strings. If omitted, the specified project’s configuration file is used.

    -CONFIGURATIONTYPENAME <STRING>

    Specifies the migrations configuration to use. If omitted, migrations will attempt to locate a single migrations configuration type in the target project.

    -CONNECTIONSTRINGNAME <STRING>

    Specifies the name of a connection string to use from the application’s configuration file.

    -CONNECTIONSTRING <STRING>

    Specifies the the connection string to use. If omitted, the context’s default connection will be used.

    -CONNECTIONPROVIDERNAME <STRING>

    Specifies the provider invariant name of the connection string.

    <COMMONPARAMETERS>

    This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, type: get-help about_commonparameters.

    Remarks

    To see the examples, type: get-help Get-Migrations -examples.
    For more information, type: get-help Get-Migrations -detailed.
    For technical information, type: get-help Get-Migrations -full.

    Additional Information

    The powershell commands are complex powershell functions, located in the toolsEntityFramework.psm1file of the Entity Framework installation. The powershell code is mostly a wrapper around theSystem.Data.Entity.Migrations.MigrationsCommands found in thetoolsEntityFrameworkEntityFramework.PowerShell.dll file. First a MigrationsCommands object is instantiated with all configuration parameters. Then there is a public method on the MigrationsCommandsobject for each of the available commands.

  • 相关阅读:
    好代码收藏
    JVM
    关于Redis
    记录ok6410 使用ov9650摄像头的过程
    记录一下在uyuv 转 planar yuv420 的做法
    mini2440 使用的mkyaffs2image 工具的源码
    hi3516a imx178 uboot 默认启动参数
    记录ok6410 使用fast150u 无线网卡的过程 其中部分内容为转载 没有修改
    ubuntu建立tftp服务器有两种方式
    转载hi3516 sd 只读解决
  • 原文地址:https://www.cnblogs.com/happyframework/p/3308678.html
Copyright © 2011-2022 走看看