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.5.0.0 (5.5.18.1019)
Syntaxpublic int RemoveRange(
	IEnumerable<T> toRemove
)
Public Function RemoveRange ( 
	toRemove As IEnumerable(Of T)
) As Integer
Parameters
- toRemove
 - Type: System.Collections.GenericIEnumerableT
To remove. 
Return Value
Type: 
Int32number of items removed
RemarksRaises OnListChanged(reset) once, instead of OnListChanged(ItemDeleted) for every T in toRemove.
See Also