Is there an easy way to remove all child records for an element using Linq in sql?
Something like this will work if there is a relationship between the tables:
var parent = // ... context.Children.DeleteAllOnSubmit(parent.Children); context.SubmitChanges();