Click or drag to resize
CollectionCore<T>.Sort Method (Int32, ListSortDirection, IComparer<Object>)
Sorts the collection.

Namespace: SD.LLBLGen.Pro.ORMSupportClasses
Assembly: SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.0.0.0 (5.0.0)
Syntax
public abstract void Sort(
	int fieldIndex,
	ListSortDirection direction,
	IComparer<Object> comparerToUse
)

Parameters

fieldIndex
Type: System.Int32
Field to sort on
direction
Type: System.ComponentModel.ListSortDirection
the sort direction
comparerToUse
Type: System.Collections.Generic.IComparer<Object>
The comparer to use. If null, it will use the default comparer.

Implements

IEntityCollectionCore.Sort(Int32, ListSortDirection, IComparer<Object>)
Remarks
For backwards compatibility.
See Also