Exemplo n.º 1
0
 /// <summary>
 /// Overloaded to let your Query order the data by COUNT(*).
 /// Used with Query.CountAll set to true.
 /// Derived classes implement this, like SqlClientDynamicQuery and OleDbDynamicQuery
 /// to account for differences in DBMS systems.
 /// </summary>
 /// <param name="countAll">This should be entity.Query</param>
 /// <param name="direction">Either Descending or Ascending</param>
 /// <example>
 /// <code>
 /// emps.Query.AddOrderBy(emps.Query, WhereParameter.Dir.ASC)</code>
 /// </example>
 public virtual void AddOrderBy(DynamicQuery countAll, WhereParameter.Dir direction)
 {
 }