Exemplo n.º 1
0
 public IList <T> Page(int start = 0, int limit = -1)
 {
     return(ProjectableMethods.Page(query, start, limit));
 }
Exemplo n.º 2
0
 public IList <TResult> Page <TResult>(Expression <Func <T, TResult> > projection, int start = 0, int limit = -1)
 {
     return(ProjectableMethods.Page(query, projection, start, limit));
 }