コード例 #1
0
 public static IAcceptsLimit OrderBy(this IAcceptsOrderBy @this, params string[] termArgs)
 {
     @this.Accept(new OrderByClause(termArgs));
     return(@this);
 }
コード例 #2
0
 public static IAcceptsLimit OrderBy(this IAcceptsOrderBy @this, IEnumerable <string> terms)
 {
     @this.Accept(new OrderByClause(terms));
     return(@this);
 }