Click or drag to resize
CollectionCoreTRemoveRange Method
Removes the elements in the range specified from this collection.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public int RemoveRange(
	IEnumerable<T> toRemove
)

Parameters

toRemove
Type: System.Collections.GenericIEnumerableT
To remove.

Return Value

Type: Int32
number of items removed
Remarks
Raises OnListChanged(reset) once, instead of OnListChanged(ItemDeleted) for every T in toRemove.
See Also