C# 클래스 Deveel.Data.Sql.SortColumn

Object used to represent a column in the ORDER BY clauses of a select statement.
상속: IPreparable
파일 보기 프로젝트 열기: deveel/deveeldb

공개 메소드들

메소드 설명
SortColumn ( SqlExpression expression ) : System

Constructs the BY column reference with the expression given and the ascending sort order.

SortColumn ( SqlExpression expression, bool ascending ) : System

Constructs the BY column reference with the expression and the sort order given.

SortColumn ( string expression ) : System

Constructs the BY column reference with the expression given and the ascending sort order.

SortColumn ( string expression, bool ascending ) : System

Constructs the BY column reference with the expression and the sort order given.

비공개 메소드들

메소드 설명
IPreparable ( IExpressionPreparer preparer ) : object

메소드 상세

SortColumn() 공개 메소드

Constructs the BY column reference with the expression given and the ascending sort order.
public SortColumn ( SqlExpression expression ) : System
expression Deveel.Data.Sql.Expressions.SqlExpression The expression of the column reference.
리턴 System

SortColumn() 공개 메소드

Constructs the BY column reference with the expression and the sort order given.
public SortColumn ( SqlExpression expression, bool ascending ) : System
expression Deveel.Data.Sql.Expressions.SqlExpression The expression of the column reference.
ascending bool The sort order for the column. If this is /// set to true, the column will be used to sort the results of /// a query in ascending order.
리턴 System

SortColumn() 공개 메소드

Constructs the BY column reference with the expression given and the ascending sort order.
public SortColumn ( string expression ) : System
expression string The expression of the column reference.
리턴 System

SortColumn() 공개 메소드

Constructs the BY column reference with the expression and the sort order given.
public SortColumn ( string expression, bool ascending ) : System
expression string The expression of the column reference.
ascending bool The sort order for the column. If this is /// set to true, the column will be used to sort the results of /// a query in ascending order.
리턴 System