Exemplo n.º 1
0
 public abstract string GetOrderByQuery(string orderBy, SQLTokens.OrderBy direction);
Exemplo n.º 2
0
 public override string GetOrderByQuery(string orderBy, SQLTokens.OrderBy direction)
 {
     return(string.Format("{0} {1}", orderBy, direction == SQLTokens.OrderBy.DESC ? direction.ToString() : string.Empty));
 }