如何首先使用EF代码重置数据库迁移?

时间:2012-07-02 09:28:22

标签: c# .net entity-framework ef-code-first ef-migrations

我有一个带有DbContext的类库项目,并通过以下配置文件启用了迁移:

<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
  </configSections>
  <connectionStrings>
    <add name="DataContext" connectionString="Data Source=Data.sdf" providerName="System.Data.SqlServerCe.4.0" />
  </connectionStrings>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
      <parameters>
        <parameter value="System.Data.SqlServerCe.4.0" />
      </parameters>
    </defaultConnectionFactory>
  </entityFramework>
</configuration>

在我使用此项目的迁移之前的某个时间,Get-Migrations命令总是返回给我:

PM> Get-Migrations -StartupProjectName "Data"
Retrieving migrations that have been applied to the target database.
201207012104355_Initial
201207012031234_Initial
201207012024250_Initial

问题是即使我删除Data.sdf或删除所有项目并创建新项目,命令也始终返回这些项目。我可以创建新数据库的唯一方法是将连接字符串中的数据库文件名从Data.sdf更改为Data1.sdf。 那么如何在不更改数据库名称的情况下重置迁移历史记录呢?

1 个答案:

答案 0 :(得分:5)

不知道这是否是官方方法。但这就是我做到的。

  1. 已删除的迁移文件
  2. 从__MigrationHistory

    中删除了匹配的行

    DELETE FROM __MigrationHistory WHERE MigrationId ='201210271944168_AddLogTable'