背景:
我们有一个项目使用ef-migrations,其中包含在长期开发过程中创建的多个(读取约 60 个)迁移。当然,其中一些迁移还涉及:
当我们奔跑时,一切都是独角兽和彩虹
Update-Database
因为每个迁移都作为单独的批次运行。但是在SQL Scripts
为这些迁移创建时使用
Update-Database -Script
我们遇到了一些问题,如下所述:
问题1:
当跨多个迁移文件删除多个约束时,EF 生成的脚本倾向于重新声明它用于删除的变量。这是因为它确保了同一迁移文件中变量名称的唯一性,但在文件更改时,它会重置计数器,从而重叠名称。
问题2:
SQL 强制它CREATE TRIGGER
始终是批处理中的第一条语句。生成脚本时,EF 不知道其中的内容,Sql("CREATE TRIGGER ... ");
因此不会对其进行任何特殊处理。因此,该语句可能会出现在脚本文件的中间,并且会出错。
解决方案:(或者我们认为!)
这两个问题的常见/常识性解决方案是在正确的位置插入 Begin/End sql 批处理。手动执行此操作会使我成为一个非常富有的人,因此这不是一个有效的解决方案。
相反,我们使用了@DavidSette 提供的技术。创建一个新的BatchSqlServerMigrationSqlGenerator
继承SqlServerMigrationSqlGenerator
,有效地覆盖dropColumnOperation
,sqlOperation
然后GO
围绕敏感的强制声明:
protected override void Generate (System.Data.Entity.Migrations.Model.DropColumnOperation dropColumnOperation)
{
base.Generate(dropColumnOperation);
Statement("GO");
}
嘘嘘:
Update-Database
此解决方案在没有标志的情况下中断运行,-Script
并出现以下错误:
System.Data.SqlClient.SqlException (0x80131904): Could not find stored procedure 'GO'.
这是由我们的自定义生成器添加的。现在我不确定为什么,但应该有一个很好的理由 EF 无法识别GO
!
更多信息:
- 迁移:在删除两个约束的脚本中重复 @var0 变量
- 变量名称“@number”已被声明
- 如何覆盖 MigratorScriptingDecorator 生成的 SQL 脚本
- 实体框架迁移:仅在 -Script 输出中包含 Go 语句
完整错误:
Applying code-based migration: 201205181406363_AddTriggerForOverlap.
GO
System.Data.SqlClient.SqlException (0x80131904): Could not find stored procedure 'GO'.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at System.Data.Entity.Migrations.DbMigrator.ExecuteSql(DbTransaction transaction, MigrationStatement migrationStatement)
at System.Data.Entity.Migrations.Infrastructure.MigratorLoggingDecorator.ExecuteSql(DbTransaction transaction, MigrationStatement migrationStatement)
at System.Data.Entity.Migrations.DbMigrator.ExecuteStatements(IEnumerable`1 migrationStatements)
at System.Data.Entity.Migrations.Infrastructure.MigratorBase.ExecuteStatements(IEnumerable`1 migrationStatements)
at System.Data.Entity.Migrations.DbMigrator.ExecuteOperations(String migrationId, XDocument targetModel, IEnumerable`1 operations, Boolean downgrading, Boolean auto)
at System.Data.Entity.Migrations.DbMigrator.ApplyMigration(DbMigration migration, DbMigration lastMigration)
at System.Data.Entity.Migrations.Infrastructure.MigratorLoggingDecorator.ApplyMigration(DbMigration migration, DbMigration lastMigration)
at System.Data.Entity.Migrations.DbMigrator.Upgrade(IEnumerable`1 pendingMigrations, String targetMigrationId, String lastMigrationId)
at System.Data.Entity.Migrations.Infrastructure.MigratorLoggingDecorator.Upgrade(IEnumerable`1 pendingMigrations, String targetMigrationId, String lastMigrationId)
at System.Data.Entity.Migrations.DbMigrator.Update(String targetMigration)
at System.Data.Entity.Migrations.Infrastructure.MigratorBase.Update(String targetMigration)
at System.Data.Entity.Migrations.Design.ToolingFacade.UpdateRunner.RunCore()
at System.Data.Entity.Migrations.Design.ToolingFacade.BaseRunner.Run()
ClientConnectionId:ac53af4b-1f9b-4849-a0da-9eb33b836caf
Could not find stored procedure 'GO'.
所以基本上修复脚本会破坏一个基本命令。请帮我决定哪一个是两害相权取其轻!