C# 클래스 Azavea.Open.DAO.Criteria.SortOrder

파일 보기 프로젝트 열기: azavea/net-dao

공개 프로퍼티들

프로퍼티 타입 설명
Direction SortType
Property string

공개 메소드들

메소드 설명
SortOrder ( string property ) : System

A simple class that holds a single sort criterion. This constructor constructs one with an "ascending" sort.

SortOrder ( string property, SortType direction ) : System

A simple class that holds a single sort criterion.

ToString ( ) : string

Returns a T:System.String that represents the current T:System.Object.

메소드 상세

SortOrder() 공개 메소드

A simple class that holds a single sort criterion. This constructor constructs one with an "ascending" sort.
public SortOrder ( string property ) : System
property string The data class' property to sort on.
리턴 System

SortOrder() 공개 메소드

A simple class that holds a single sort criterion.
public SortOrder ( string property, SortType direction ) : System
property string The data class' property to sort on.
direction SortType The direction to sort based on the Property.
리턴 System

ToString() 공개 메소드

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
리턴 string

프로퍼티 상세

Direction 공개적으로 프로퍼티

The direction to sort based on the Property.
public SortType Direction
리턴 SortType

Property 공개적으로 프로퍼티

The data class' property to sort on.
public string Property
리턴 string