What\'s the best way to remove all elements in a System.Data.Entity.DbSet, with Entity Framework 4.3?
If you want to remove all elements without writing any SQL and only execute a Single Db Call
Entity Framework Extended Library offers a batch delete method.
context.Users.Delete();