Esempio n. 1
0
 public List <T> Fetch <T>(long page, long itemsPerPage, Sql sql)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Fetch <T>(page, itemsPerPage, sql)));
 }
Esempio n. 2
0
 public List <T> Fetch <T>(long page, long itemsPerPage, string sql, params object[] args)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Fetch <T>(page, itemsPerPage, sql, args)));
 }
Esempio n. 3
0
 public List <T> Fetch <T>(Sql sql)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Fetch <T>(sql)));
 }
Esempio n. 4
0
 public List <T> Fetch <T>(string sql, params object[] args)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Fetch <T>(sql, args)));
 }
Esempio n. 5
0
 public List <object> Fetch(Type type, Sql Sql)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Fetch(type, Sql)));
 }
Esempio n. 6
0
 public List <object> Fetch(Type type, string sql, params object[] args)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Fetch(type, sql, args)));
 }