Azavea.Open.DAO.Criteria.SortOrder.SortOrder C# (CSharp) Method

SortOrder() public method

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.
return System
        public SortOrder(string property)
            : this(property, SortType.Asc)
        {
        }

Same methods

SortOrder::SortOrder ( string property, SortType direction ) : System