Ejemplo n.º 1
0
 public async virtual Task <IEnumerable <T> > GetSet <T>(object predicate, IList <ISort> sort, int firstResult, int maxResults, IDbTransaction transaction, int?commandTimeout, bool buffered) where T : class
 {
     return(await _dapper.GetSetAsync <T>(Connection, predicate, sort, firstResult, maxResults, transaction, commandTimeout, buffered));
 }
Ejemplo n.º 2
0
 public async Task <IEnumerable <T> > GetSetAsync <T>(IDbConnection connection, object predicate = null, IList <ISort> sort = null, int firstResult = 1, int maxResults = 10, IDbTransaction transaction = null, int?commandTimeout = null) where T : class
 {
     return(await _dapper.GetSetAsync <T>(connection, predicate, sort, firstResult, maxResults, transaction, commandTimeout));
 }