Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DbSet::RemoveRange Method (IEnumerable^)

Entity Framework 6.0
 

Removes the given collection of entities from the context underlying the set with each entity being put into the Deleted state such that it will be deleted from the database when SaveChanges is called.

Namespace:   System.Data.Entity
Assembly:  EntityFramework (in EntityFramework.dll)

public:
virtual IEnumerable^ RemoveRange(
	IEnumerable^ entities
)

Parameters

entities
Type: System.Collections::IEnumerable^

The collection of entities to delete.

Return Value

Type: System.Collections::IEnumerable^

The collection of entities.

Note that if AutoDetectChangesEnabled is set to true (which is the default), then DetectChanges will be called once before delete any entities and will not be called again. This means that in some situations RemoveRange may perform significantly better than calling Remove multiple times would do. Note that if any entity exists in the context in the Added state, then this method will cause it to be detached from the context. This is because an Added entity is assumed not to exist in the database such that trying to delete it does not make sense.

Return to top
Show: