C# Class Azavea.Open.DAO.Criteria.SortOrder

Afficher le fichier Open project: azavea/net-dao

Méthodes publiques

Свойство Type Description
Direction SortType
Property string

Méthodes publiques

Méthode Description
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.

Method Details

SortOrder() public méthode

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.
Résultat System

SortOrder() public méthode

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.
Résultat System

ToString() public méthode

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
Résultat string

Property Details

Direction public_oe property

The direction to sort based on the Property.
public SortType Direction
Résultat SortType

Property public_oe property

The data class' property to sort on.
public string Property
Résultat string