30% OFF - 10th Anniversary discount on Entity Framework Extensions until December 15 with code: ZZZANNIVERSARY10
Entity Framework Cascade Delete Discover to Auto Delete Child Entities
Cascade delete allows the deletion of a row to trigger the deletion of related rows automatically.
- EF will delete a child record(s) (database rows) automatically when its parent is explicitly deleted via the DbContext.
- For example, when an author is deleted, it will remove all the related books automatically as well.
using (var context = new BookStore()) { var author = context.Authors .FirstOrDefault(); context.Authors.Remove(author); context.SaveChanges(); }
Turn off Cascade Delete
Using Fluent API, you can configure entities to turn off cascade delete by calling the WillCascadeOnDelete(false)
method.
protected override void OnModelCreating(DbModelBuilder modelBuilder) { modelBuilder.Entity<Book>() .HasOptional<Author>(b => b.Author) .WithMany() .WillCascadeOnDelete(false); }
Now when the author entity is deleted, the related books won't be deleted from the database.
ZZZ Projects