What is the best way to remove multiple records in one go with LINQ?
With just Entity Framework I found this to be the tightest code.
db.PreperProperties.RemoveRange(db.PreperProperties.Where(c => c.preperFk == prpr.id)); db.SaveChanges();