예제 #1
0
 public async Task <List <T> > QueryPage <TKey>(Expression <Func <T, bool> > whereExpression, Expression <Func <T, TKey> > orderByExpression, int intPageIndex, int intPageSize = 20, bool isAsc = true)
 {
     return(await baseDal.QueryPage(whereExpression, orderByExpression, intPageIndex, intPageSize, isAsc));
 }