Class SortExpression<T>
- Namespace
- Dynamic
Data .Binding
- Assembly
- DynamicData.dll
A value expression with sort direction.
Type Parameters
T
The type of the item.
- Inheritance
-
SortExpression<T>
- Extension Methods
Remarks
Initializes a new instance of the SortExpression<T> class.
Constructors
SortExpression(Func<T, IComparable>, SortDirection)
A value expression with sort direction.
public SortExpression(Func<T, IComparable> expression, SortDirection direction = SortDirection.Ascending)
Parameters
expression
Func<T, IComparable>The expression.
direction
SortDirection The direction.
Remarks
Initializes a new instance of the SortExpression<T> class.
Properties
Direction
Gets the direction.
Property Value
Expression
Gets the expression.
Property Value
- Func<T, IComparable>