Well, I have one-to-many related model:
public class Parent { public int Id { get; set; } public string Name { get; set; } public ICollection<
In EF6 a faster way to do the operation is...
context.Children.RemoveRange(parent.Children)