Azavea.Open.DAO.Criteria.Joins.JoinSortOrder.JoinSortOrder C# (CSharp) Method

JoinSortOrder() public method

A simple class that holds a sort criterion for a property from the right or left DAO.
public JoinSortOrder ( string property, SortType direction, bool isForLeftDao )
property string The data class' property to sort on.
direction SortType The direction to sort based on the Property.
isForLeftDao bool If true, the property we're sorting on comes from the left /// DAO. If false, it comes from the right DAO.
        public JoinSortOrder(string property, SortType direction, bool isForLeftDao)
            : base(property, direction)
        {
            IsForLeftDao = isForLeftDao;
        }

Same methods

JoinSortOrder::JoinSortOrder ( string property, bool isForLeftDao )