コード例 #1
0
        public IPropertyQuery OrderBy(IManagedProperty property, OrderDirection direction)
        {
            DbOrder o = new DbOrder(property, direction == OrderDirection.Ascending);

            _orders.Add(o);
            return(this);
        }
コード例 #2
0
ファイル: PropertyQuery.cs プロジェクト: 569550384/Rafy
 public IPropertyQuery OrderBy(IManagedProperty property, OrderDirection direction)
 {
     DbOrder o = new DbOrder(property, direction == OrderDirection.Ascending);
     _orders.Add(o);
     return this;
 }