C# Class Tortuga.Chain.SortExpression

Sort expressions are used for From and FromFunction command builders.
You can implicitly convert strings into sort expressions.
Mostra file Open project: docevaad/Chain

Private Properties

Property Type Description

Public Methods

Method Description
SortExpression ( string columnName ) : System

Initializes a new instance of the SortExpression class.

SortExpression ( string columnName, SortDirection descending ) : System

Initializes a new instance of the SortExpression class.

Method Details

SortExpression() public method

Initializes a new instance of the SortExpression class.
public SortExpression ( string columnName ) : System
columnName string Name of the column to be sorted by.
return System

SortExpression() public method

Initializes a new instance of the SortExpression class.
public SortExpression ( string columnName, SortDirection descending ) : System
columnName string Name of the column to be sorted by.
descending SortDirection if set to true [descending].
return System