Entityframework 6.0 has introduced two new methods for Dbset: AddRange andRemoveRange. DbSet.AddRange adds the collection of entities to the DbContext, sowe don't have to add each entity individually.
Example
Similarly,DbSet.RemoveRange is used to remove collection of entities from DbSet.