For an application using Code First EF 5 beta I have:
public class ParentObject { public int Id {get; set;} public virtual List Ch
In EF Core, it can be done by Delete Orphans.
Like this:
dbContext.Children.Clear();