Exemplo n.º 1
0
 public IQueryProviderWithIncludes <T> Query <T>()
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Query <T>()));
 }
Exemplo n.º 2
0
 public IEnumerable <T> Query <T>(Sql sql)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Query <T>(sql)));
 }
Exemplo n.º 3
0
 public IEnumerable <object> Query(Type type, Sql Sql)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Query(type, Sql)));
 }
Exemplo n.º 4
0
 public IEnumerable <T> Query <T>(string sql, params object[] args)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Query <T>(sql, args)));
 }
Exemplo n.º 5
0
 public IEnumerable <object> Query(Type type, string sql, params object[] args)
 {
     return(RetryPolicy.ExecuteAction(() => InternalDb.Query(type, sql, args)));
 }