예제 #1
0
 public OrderByExpression(Column column, bool ascending)
 {
     this._column    = column;
     this._ascending = ascending;
 }
예제 #2
0
 public OrderByExpression(Column column)
 {
     this._column    = column;
     this._ascending = true;
 }