gpt4 book ai didi

c# - Entity Framework 代码优先迁移 - 无法删除约束,因为它不存在(从 4.3 到 5.0 的命名约定)

转载 作者:可可西里 更新时间:2023-11-01 08:27:29 26 4
gpt4 key购买 nike

之前使用的是 EF 4.3,升级到 5.0 后,我发现索引、FK 约束和 PK 约束的命名约定都已更改为包含 dbo(例如,PK_Users 现在已变为 PK_dbo.Users)

现在每当我对模型进行更改并且它需要更改包含这些内容的表时,它总是说它不能删除约束,因为它找不到它。

我只是想要它,以便当它尝试删除约束/索引/键时,它首先检查是否存在 5.0 之前的命名,如果存在则删除它,但仍然使用新的 5.0 命名重新创建它约定。

从 4.3 到 5.0,命名约定发生了这样的变化:

主键/索引

Old: PK_Users                    New: PK_dbo.Users

外键

Old: FK_Users_Roles_Role_Id      New: FK_dbo.Users_dbo.Roles_Role_Id               

注意:我不能简单地让 EF 重新生成所有表,我在这个数据库中有生产数据。我也不想使用自定义迁移为每个表手动执行此操作。

编辑:我发现了一个类似的问题How can I stop Entity Framework 5 migrations adding dbo. into key names?但是这个人只想忽略 5.0 约定并坚持使用 4.3,它只处理表重命名。我不想这样做,因为 EF 的后续版本可能会导致更多更改,这些更改会影响此代码,并且只会成为麻烦。

我尝试做一些与发布的答案相同的事情:

public class CodeMigrator : CSharpMigrationCodeGenerator
{
protected override void Generate(
DropIndexOperation dropIndexOperation, IndentedTextWriter writer)
{
dropIndexOperation.Name = StripDbo(dropIndexOperation.Name);
base.Generate(dropIndexOperation, writer);
}

protected override void Generate(DropForeignKeyOperation dropForeignKeyOperation, IndentedTextWriter writer)
{
dropForeignKeyOperation.Name = StripDbo(dropForeignKeyOperation.Name);
base.Generate(dropForeignKeyOperation, writer);
}

protected override void Generate(DropPrimaryKeyOperation dropPrimaryKeyOperation, IndentedTextWriter writer)
{
dropPrimaryKeyOperation.Name = StripDbo(dropPrimaryKeyOperation.Name);
base.Generate(dropPrimaryKeyOperation, writer);
}

// TODO: Override other Generate overloads that involve table names

private string StripDbo(string name)
{
return name.Replace("dbo.", "");
}
}

并将其添加到配置中:

public Configuration()
{
CodeGenerator = new CodeMigrator();
AutomaticMigrationsEnabled = true;
AutomaticMigrationDataLossAllowed = false;

}

但是错误仍然存​​在:

dbo.Users_dbo.Departments_Department_Id' is not a constraint. Could not drop constraint. See previous errors.

我实际上尝试覆盖 CSharpMigrationCodeGenerator 中的每个成员并在 return 语句上设置断点,但没有一个命中。所以看起来我的自定义生成器从未被使用过,不确定我缺少什么。

最佳答案

我找到了答案,它与我在问题中链接的问题的答案相似。覆盖 CSharpCodeGenerator 的问题仅用于自定义迁移

要覆盖自动迁移,您需要覆盖 SqlServerMigrationSqlGenerator 类并在 Migration.Configuration 构造函数中调用 SetSqlGenerator():

public class SqlMigrator : SqlServerMigrationSqlGenerator
{
protected override void Generate(DropForeignKeyOperation dropForeignKeyOperation)
{
dropForeignKeyOperation.Name = StripDbo(dropForeignKeyOperation.Name);
base.Generate(dropForeignKeyOperation);
}

protected override void Generate(DropIndexOperation dropIndexOperation)
{
dropIndexOperation.Name = StripDbo(dropIndexOperation.Name);
base.Generate(dropIndexOperation);
}

protected override void Generate(DropPrimaryKeyOperation dropPrimaryKeyOperation)
{
dropPrimaryKeyOperation.Name = StripDbo(dropPrimaryKeyOperation.Name);
base.Generate(dropPrimaryKeyOperation);
}

private string StripDbo(string name)
{
return name.Replace("dbo.", "");
}
}

迁移配置:

public Configuration()
{
AutomaticMigrationsEnabled = true;
AutomaticMigrationDataLossAllowed = false;
SetSqlGenerator("System.Data.SqlClient", new SqlMigrator());
}

关于c# - Entity Framework 代码优先迁移 - 无法删除约束,因为它不存在(从 4.3 到 5.0 的命名约定),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17241594/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com