public static IAcceptsLimit OrderBy(this IAcceptsOrderBy @this, params string[] termArgs) { @this.Accept(new OrderByClause(termArgs)); return(@this); }
public static IAcceptsLimit OrderBy(this IAcceptsOrderBy @this, IEnumerable <string> terms) { @this.Accept(new OrderByClause(terms)); return(@this); }