123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Linq.Expressions;
- namespace Ant.ORM
- {
-
-
-
-
- public interface IGroupingQuery<T>
- {
-
-
-
-
-
-
- IGroupingQuery<T> ThenBy<K>(Expression<Func<T, K>> predicate);
-
-
-
-
-
- IGroupingQuery<T> Having(Expression<Func<T, bool>> predicate);
-
-
-
-
-
-
- IQuery<TResult> Select<TResult>(Expression<Func<T, TResult>> selector);
- }
- }
|