Exemplo n.º 1
0
 public OrderByExpression(Column column, bool ascending)
 {
     this._column    = column;
     this._ascending = ascending;
 }
Exemplo n.º 2
0
 public OrderByExpression(Column column)
 {
     this._column    = column;
     this._ascending = true;
 }