The DELETE statement conflicted with the SAME TABLE REFERENCE constraint with Entity Framework

前端 未结 3 1119
梦如初夏
梦如初夏 2021-01-01 18:15

I have a table with a self reference where the ParentId is an FK to the ID (PK).
Using EF (code-first), I\'ve set up my relationship as follows:

this.Ha         


        
相关标签:
3条回答
  • 2021-01-01 18:58

    Deleting parent and child like the following does work for me. The children are deleted before the parent and it is a single database roundtrip (one call to SaveChanges) with of course three DELETE statements in a single transaction:

    using (var ctx = new MyContext())
    {
        var parent = ctx.MyEntities.Include(e => e.Children).FirstOrDefault();
    
        foreach (var child in parent.Children.ToList())
            ctx.MyEntities.Remove(child);
    
        ctx.MyEntities.Remove(parent);
    
        ctx.SaveChanges();
    }
    

    (Using ToList() is necessary here because calling Remove for the children also removes from the parent's Children collection. Without using ToList a runtime exception would be thrown that the collection the foreach loop is iterating over has been modified.)

    The order in which Remove is called for children and parent doesn't matter. This works as well:

    using (var ctx = new MyContext())
    {
        var parent = ctx.MyEntities.Include(e => e.Children).FirstOrDefault();
    
        var children = parent.Children.ToList();
    
        ctx.MyEntities.Remove(parent);
    
        foreach (var child in children)
            ctx.MyEntities.Remove(child);
    
        ctx.SaveChanges();
    }
    

    EF sorts the DELETE statements in the correct order in both cases.

    Full test program (EF 5 / .NET 4.5 / SQL Server):

    using System.Collections.Generic;
    using System.Data.Entity;
    using System.Linq;
    
    namespace EFSelfReference
    {
        public class MyEntity
        {
            public int Id { get; set; }
            public string Name { get; set; }
    
            public int? ParentId { get; set; }
            public MyEntity Parent { get; set; }
    
            public ICollection<MyEntity> Children { get; set; }
        }
    
        public class MyContext : DbContext
        {
            public DbSet<MyEntity> MyEntities { get; set; }
    
            protected override void OnModelCreating(DbModelBuilder modelBuilder)
            {
                modelBuilder.Entity<MyEntity>()
                    .HasOptional(e => e.Parent)
                    .WithMany(e => e.Children)
                    .HasForeignKey(e => e.ParentId);
            }
        }
    
        class Program
        {
            static void Main(string[] args)
            {
                Database.SetInitializer<MyContext>(
                    new DropCreateDatabaseAlways<MyContext>());
                using (var ctx = new MyContext())
                {
                    ctx.Database.Initialize(false);
    
                    var parent = new MyEntity { Name = "Parent",
                        Children = new List<MyEntity>() };
    
                    parent.Children.Add(new MyEntity { Name = "Child 1" });
                    parent.Children.Add(new MyEntity { Name = "Child 2" });
    
                    ctx.MyEntities.Add(parent);
    
                    ctx.SaveChanges();
                }
    
                using (var ctx = new MyContext())
                {
                    var parent = ctx.MyEntities.Include(e => e.Children)
                        .FirstOrDefault();
    
                    foreach (var child in parent.Children.ToList())
                        ctx.MyEntities.Remove(child);
    
                    ctx.MyEntities.Remove(parent);
    
                    ctx.SaveChanges();
                }
            }
        }
    }
    

    Screenshot after the first using block with current content in DB table before the entities are deleted:

    screen 1

    Screenshot from SQL profiler after the last SaveChanges:

    screen 2

    I.e. Child 1 (Id = 2) and Child 2 (Id = 3) are deleted before Parent (Id = 1).

    0 讨论(0)
  • 2021-01-01 18:59

    I realize the answer is a year old, but I find it incomplete. In my mind, a self-referencing table is used to represent an arbitrary depth.

    For example, consider the following structure:

    /*  
     *  earth
     *      europe
     *          germany
     *          ireland
     *              belfast
     *              dublin
     *      south america
     *          brazil
     *              rio de janeiro
     *          chile
     *          argentina                 
     *               
     */
    

    The answer does not solve how to delete earth, or europe, from the structure above.

    I submit the following code as an alternative (modification of answer provided by Slauma, who did a good job btw).

    In the MyContext class, add the following methods:

    public void DeleteMyEntity(MyEntity entity)
    {
        var target = MyEntities
            .Include(x => x.Children)
            .FirstOrDefault(x => x.Id == entity.Id);
    
        RecursiveDelete(target);
    
        SaveChanges();
    
    }
    
    private void RecursiveDelete(MyEntity parent)
    {
        if (parent.Children != null)
        {
            var children = MyEntities
                .Include(x => x.Children)
                .Where(x => x.ParentId == parent.Id);
    
            foreach (var child in children)
            {
                RecursiveDelete(child);
            }
        }
    
        MyEntities.Remove(parent);
    }
    

    I populate the data using code-first with the following class:

    public class TestObjectGraph
    {
        public MyEntity RootEntity()
        {
            var root = new MyEntity
            {
                Name = "Earth",
                Children =
                    new List<MyEntity>
                        {
                            new MyEntity
                            {
                                Name = "Europe",
                                Children =
                                    new List<MyEntity>
                                    {
                                        new MyEntity {Name = "Germany"},
                                        new MyEntity
                                        {
                                            Name = "Ireland",
                                            Children =
                                                new List<MyEntity>
                                                {
                                                    new MyEntity {Name = "Dublin"},
                                                    new MyEntity {Name = "Belfast"}
                                                }
                                        }
                                    }
                            },
                            new MyEntity
                            {
                                Name = "South America",
                                Children =
                                    new List<MyEntity>
                                    {
                                        new MyEntity
                                        {
                                            Name = "Brazil",
                                            Children = new List<MyEntity>
                                            {
                                                new MyEntity {Name = "Rio de Janeiro"}
                                            }
                                        },
                                        new MyEntity {Name = "Chile"},
                                        new MyEntity {Name = "Argentina"}
                                    }
                            }
                        }
            };
    
            return root;
        }
    }
    

    which I save to my database with the following code:

    ctx.MyEntities.Add(new TestObjectGraph().RootEntity());
    

    then invoke the deletes like so:

    using (var ctx = new MyContext())
    {
        var parent = ctx.MyEntities
            .Include(e => e.Children)
            .FirstOrDefault();
    
        var deleteme = parent.Children.First();
    
        ctx.DeleteMyEntity(deleteme);
    }
    

    which results in my database now having a structure like so:

     /*  
     *  earth
     *      south america
     *          brazil
     *              rio de janeiro
     *          chile
     *          argentina                 
     *               
     */
    

    where europe and all of its children are deleted.

    in the above, I am specifying the first child of the root node, to demonstrate that using my code you can recursively delete a node and all of its children from anywhere in the hierarchy.

    if you want to test deleting everyting, you can simply modify the line like this:

    ctx.DeleteMyEntity(parent);
    

    or whichever node you want in the tree.

    obviously, I won't get the bounty, but hopefully my post will help someone looking for a solution that works for self-referencing entities of arbitrary depth.

    Here is the full source, which is a modified version of Slauma's code from the selected answer:

    using System;
    using System.Collections.Generic;
    using System.Data.Entity;
    using System.Linq;
    
    namespace EFSelfReference
    {
        public class MyEntity
        {
            public int Id { get; set; }
            public string Name { get; set; }
    
            public int? ParentId { get; set; }
            public MyEntity Parent { get; set; }
    
            public ICollection<MyEntity> Children { get; set; }
        }
    
        public class MyContext : DbContext
        {
            public DbSet<MyEntity> MyEntities { get; set; }
    
            protected override void OnModelCreating(DbModelBuilder modelBuilder)
            {
                modelBuilder.Entity<MyEntity>()
                    .HasOptional(e => e.Parent)
                    .WithMany(e => e.Children)
                    .HasForeignKey(e => e.ParentId);
            }
    
    
            public void DeleteMyEntity(MyEntity entity)
            {
                var target = MyEntities
                    .Include(x => x.Children)
                    .FirstOrDefault(x => x.Id == entity.Id);
    
                RecursiveDelete(target);
    
                SaveChanges();
    
            }
    
            private void RecursiveDelete(MyEntity parent)
            {
                if (parent.Children != null)
                {
                    var children = MyEntities
                        .Include(x => x.Children)
                        .Where(x => x.ParentId == parent.Id);
    
                    foreach (var child in children)
                    {
                        RecursiveDelete(child);
                    }
                }
    
                MyEntities.Remove(parent);
            }
        }
    
        public class TestObjectGraph
        {
            public MyEntity RootEntity()
            {
                var root = new MyEntity
                {
                    Name = "Earth",
                    Children =
                        new List<MyEntity>
                        {
                            new MyEntity
                            {
                                Name = "Europe",
                                Children =
                                    new List<MyEntity>
                                    {
                                        new MyEntity {Name = "Germany"},
                                        new MyEntity
                                        {
                                            Name = "Ireland",
                                            Children =
                                                new List<MyEntity>
                                                {
                                                    new MyEntity {Name = "Dublin"},
                                                    new MyEntity {Name = "Belfast"}
                                                }
                                        }
                                    }
                            },
                            new MyEntity
                            {
                                Name = "South America",
                                Children =
                                    new List<MyEntity>
                                    {
                                        new MyEntity
                                        {
                                            Name = "Brazil",
                                            Children = new List<MyEntity>
                                            {
                                                new MyEntity {Name = "Rio de Janeiro"}
                                            }
                                        },
                                        new MyEntity {Name = "Chile"},
                                        new MyEntity {Name = "Argentina"}
                                    }
                            }
                        }
                };
    
                return root;
            }
        }
    
        class Program
        {
            static void Main(string[] args)
            {
                Database.SetInitializer<MyContext>(
                   new DropCreateDatabaseAlways<MyContext>());
                using (var ctx = new MyContext())
                {
                    ctx.Database.Initialize(false);
    
                    ctx.MyEntities.Add(new TestObjectGraph().RootEntity());
                    ctx.SaveChanges();
                }
    
                using (var ctx = new MyContext())
                {
                    var parent = ctx.MyEntities
                        .Include(e => e.Children)
                        .FirstOrDefault();
    
                    var deleteme = parent.Children.First();
    
                    ctx.DeleteMyEntity(deleteme);
                }
    
                Console.WriteLine("Completed....");
                Console.WriteLine("Press any key to exit");
                Console.ReadKey();
            }
        }
    }
    
    0 讨论(0)
  • 2021-01-01 19:21

    There is another way, (think about the draw backs before doing it ... ) you can set the relationship to be ON DELETE CASCADE, and try to delete just the parent row.

    0 讨论(0)
提交回复
热议问题