How to remove child one to many related records in EF code first database?

In EF6 a faster way to do the operation is…

 context.Children.RemoveRange(parent.Children)

Leave a Comment