EF Code First 迁移坚持切换连接 table 名称

EF Code First Migration insists on switching junction table names

我有一个 EF Code First 模型,其中包含用于 Foo 的 table 和用于 Bar 的 table。这是一个多对多的关系,因此 EF 生成了一个名为 FooBars 的联结 table:

CreateTable(
    "dbo.FooBar",
    c => new
        {
            Foo_Id = c.Int(nullable: false),
            Bar_Id = c.Int(nullable: false),
        })
    .PrimaryKey(t => new { t.Foo_Id, t.Bar_Id })
    .ForeignKey("dbo.Foos", t => t.Foo_Id, cascadeDelete: true)
    .ForeignKey("dbo.Bars", t => t.Bar_Id, cascadeDelete: true)             
    .Index(t => t.Foo_Id)
    .Index(t => t.Bar_Id);

一切顺利。现在,我对模型进行了一些更改并添加了迁移。 Foo 实体现在有一些额外的 string 和 int 属性,关系或任何东西都没有变化。但是,不知为何,EF现在坚持结点table应该叫BarFoos,想删除原来的FooBarstable:

 DropForeignKey("dbo.FooBars", "Foo_Id", "dbo.Foos");
 DropForeignKey("dbo.FooBars", "Bar_Id", "dbo.Bars");
 DropIndex("dbo.Foobars", new[] { "Foo_Id" });
 DropIndex("dbo.FooBars", new[] { "Bar_Id" });

 CreateTable(
      "dbo.BarFoos",
           c => new
                {
                    Bar_Id = c.Int(nullable: false),
                    Foo_Id = c.Int(nullable: false),
                })
 .PrimaryKey(t => new { t.Bar_Id, t.Foo_Id })
 .ForeignKey("dbo.Bars", t => t.Bar_Id, cascadeDelete: true)
 .ForeignKey("dbo.Foos", t => t.Foo_Id, cascadeDelete: true)
 .Index(t => t.Bar_Id)
 .Index(t => t.Foo_Id);

 DropTable("dbo.FooBars");

显然,我可以将所有记录从 FooBars 复制到 BarFoos,但这太烦人了,我需要继续做一些事情,因为我对模型进行了更改并重新生成了这个特定的迁移。为什么 EF 坚持结点 table 应该突然相反?我可以做些什么来避免这种情况吗?

我以前遇到过这种情况 - 我从未找到解决方案,但我的解决方法是在 Fluent API 中强制使用 table 名称。例如:

modelBuilder.Entity(Of User)() _ 
.HasMany(Function(u) u.Roles) _ 
.WithMany(Function(r) r.Users) _ 
.Map(Function(u) u.MapRightKey("Role_RoleID").MapLeftKey("User_UserID").ToTable("UserRoles"))

(C#, 匹配问题语言):

modelBuilder.Entity<User>()
.HasMany(u => u.Roles)
.WithMany(r => r.Users)
.Map(u => u.MapRightKey("Role_RoleID").MapLeftKey("User_UserID").ToTable("UserRoles"));