使用Code First迁移添加外键

use*_*324 19 entity-framework foreign-keys ef-migrations

添加迁移后尝试更新数据库时出错.

以下是添加迁移之前的类

public class Product
{
    public Product() { }

    public int ProductId { get; set; } 
    public string Name { get; set; }
    public decimal Price { get; set; }
    public bool Istaxable { get; set; }
    public string DefaultImage { get; set; }
    public IList<Feature> Features { get; set; }
    public IList<Descriptor> Descriptors { get; set; }
    public IList<Image> Images { get; set; }
    public IList<Category> Categories { get; set; }
}


public class Feature
{
    public int Id { get; set; }
    public string Title { get; set; }
    public string Description { get; set; }

}
Run Code Online (Sandbox Code Playgroud)

现在我想在Feature类中添加一个外键并以这种方式重构类:

public class Product
{
    public Product() { }

    public int ProductId { get; set; } 
    public string Name { get; set; }
    public decimal Price { get; set; }
    public bool Istaxable { get; set; }
    public string DefaultImage { get; set; }
    public IList<Feature> Features { get; set; }
    public IList<Descriptor> Descriptors { get; set; }
    public IList<Image> Images { get; set; }
    public IList<Category> Categories { get; set; }
}

public class Feature
{
    public int Id { get; set; }
    public string Title { get; set; }
    public string Description { get; set; }
    public string Image { get; set; }
    public string VideoLink { get; set; }

    public int ProductId { get; set; }
    public Product Product { get; set; }
}
Run Code Online (Sandbox Code Playgroud)

我用Add-Migration命令添加了一个迁移.我添加了一个Update-Database命令,这是我得到的:

ALTER TABLE语句与FOREIGN KEY约束"FK_dbo.ProductFeatures_dbo.Products_ProductId"冲突.冲突发生在数据库"CBL",表"dbo.Products",列'ProductId'

我该怎么做才能解决这个问题,让我的迁移恢复正常?

小智 43

解决此问题的关键是将迁移分为两次迁移.首先,添加一个可空字段并填写数据.其次,使该字段成为必需的外键.

第一次迁移

  1. 将新属性作为可空类型添加到您的类中(例如int?)

    public class MyOtherEntity
    {
        public int Id { get; set; }
    }
    
    public class MyEntity
    {
        ...
        // New reference to MyOtherEntity
        public int? MyOtherEntityId { get; set; }
        ...
    }
    
    Run Code Online (Sandbox Code Playgroud)
  2. 创建迁移.注意:迁移名称并不重要,但"AddBlogPosts1"之类的内容使其易于阅读.

    > add-migration AddMyEntityMyOtherEntity1
    
    Run Code Online (Sandbox Code Playgroud)
  3. 这应该支持一个如下所示的迁移:

    public partial class AddMyTableNewProperty1 : DbMigration
    {
        public override void Up()
        {
            AddColumn("dbo.MyEntity", "MyOtherEntityId", c => c.Int());
        }
        public override void Down()
        {
            DropColumn("dbo.MyEntity", "MyOtherEntityId");
        }
    }
    
    Run Code Online (Sandbox Code Playgroud)
  4. 现在,手动编辑生成的迁移,为新字段添加默认值.最简单的情况是默认值是不变的.如果需要,您可以在SQL中添加更多逻辑.此示例假定所有MyEntity实例都指向ID为1的同一MyOtherEntity实例.

    public partial class AddMyTableNewProperty1 : DbMigration
    {
        public override void Up()
        {
            AddColumn("dbo.MyEntity", "MyOtherEntityId", c => c.Int());
    
            // ADD THIS BY HAND
            Sql(@"UPDATE dbo.MyEntity SET MyOtherEntityId = 1
                  where MyOtherEntity IS NULL");
        }
        public override void Down()
        {
            DropColumn("dbo.MyEntity", "MyOtherEntityId");
        }
    }
    
    Run Code Online (Sandbox Code Playgroud)
  5. 更新数据库

    > update-database
    
    Run Code Online (Sandbox Code Playgroud)

第二次迁移

  1. 返回到MyEntity类并更改新属性以表示强制外键.

    public class MyEntity
    {
        ...
        // Change the int? to int to make it mandatory
        public int MyOtherEntityId { get; set; }
    
        // Create a reference to the other entity
        public virtual MyOtherEntity MyOtherEntity { get; set; }
        ...
    }
    
    Run Code Online (Sandbox Code Playgroud)
  2. 创建另一个迁移

    > add-migration AddMyEntityMyOtherEntity2
    
    Run Code Online (Sandbox Code Playgroud)
  3. 这应该创建如下的迁移:

    public partial class AddMyEntityMyOtherEntity2: DbMigration
    {
        public override void Up()
        {
            AlterColumn("dbo.MyEntity", "MyOtherEntityId", c => c.Int(nullable: false));
            CreateIndex("dbo.MyEntity", "MyOtherEntityId");
            AddForeignKey("dbo.MyEntity", "MyOtherEntityId", "dbo.MyOtherEntity", "Id");
        }
        public override void Down()
        {
            DropForeignKey("dbo.MyEntity", "MyOtherEntityId", "dbo.MyOtherEntity");
            DropIndex("dbo.MyEntity", new[] { "MyOtherEntityId" });
            AlterColumn("dbo.MyEntity", "MyOtherEntityId", c => c.Int());
        }
    }
    
    Run Code Online (Sandbox Code Playgroud)
  4. 更新数据库

    > update-database
    
    Run Code Online (Sandbox Code Playgroud)

其他说明

  1. 此技术适用于在应用程序启动期间应用的迁移.
  2. 可以在SQL中为新列添加更复杂的映射,但这里没有说明.

  • 您是否忘记提及必须有一个 id = 1 的 MyOtherEntity 行。否则自定义查询将失败 (2认同)

too*_*too 8

这是一个老问题,但目前不需要创建单独的迁移,可以使用以下几个步骤解决此问题:

  1. 使用实体更改运行 Add-Migration(添加了一个新的不可为空的引用属性,在本例中为 ProductId)以构建新的迁移类
  2. 修改新添加的迁移以创建可空列(可空:true)而不是不可空列
  3. 在AddColumn下面添加Sql命令根据需要设置列的值
  4. 下面添加 AlterColumn 命令,这将使列按预期不可为空

在上面的例子中,这看起来像:

    public override void Up()
    {
        AddColumn("dbo.ProductFeatures", "ProductId", c => c.Int(nullable: true));
        Sql("UPDATE [dbo].[ProductFeatures] SET ProductId = (SELECT TOP 1 [Id] FROM [dbo].[Products])");
        AlterColumn("dbo.ProductFeatures", "ProductId", c => c.Int(nullable: false));
        CreateIndex("dbo.ProductFeatures", "ProductId");
        AddForeignKey("dbo.ProductFeatures", "ProductId", "dbo.Products", "Id");
    }
Run Code Online (Sandbox Code Playgroud)


Jas*_*sey 6

我今天遇到了这个问题.这就是我处理它的方式.我确实必须让我的FK属性可以为空,这在我的案例中并不是什么大问题.

我对POCO进行了更改,生成了迁移,然后将以下内容添加到迁移中.

public partial class LineItemProductionHistory_v4 : DbMigration
{
    public override void Up()
    {
        AddColumn("LineItemProductionHistories","TempLineItemId",c=>c.Int());
        Sql("Update LineItemProductionHistories Set TempLineItemId = LineItem_Id");
       .
       . Generated code
       .
        Sql("Update LineItemProductionHistories Set LineItemId = TempLineItemId");
        DropColumn("LineItemProductionHistories", "TempLineItemId");
    }
}
Run Code Online (Sandbox Code Playgroud)

我只是暂时存储所有外键,让迁移执行添加/删除操作,然后将外键放回新创建的FK中.


小智 2

当您尝试在已包含数据的表的不可空列上添加外键约束时,可能会发生这种情况。如果您的表包含数据,请先尝试删除它们,然后重试更新数据库。

  • 这忽略了迁移的重点(保持数据可靠)。您应该将其作为迁移的一部分来处理,而不是添加手动删除操作 (15认同)