Exemplo n.º 1
0
 public Task <int> UpdateAsync(object poco, IEnumerable <string> columns)
 {
     return(RetryPolicy.ExecuteAsync(() => InternalDb.UpdateAsync(poco, columns)));
 }
Exemplo n.º 2
0
 public Task <int> UpdateAsync <T>(T poco, Expression <Func <T, object> > fields)
 {
     return(RetryPolicy.ExecuteAsync(() => InternalDb.UpdateAsync <T>(poco, fields)));
 }
Exemplo n.º 3
0
 public Task <int> UpdateAsync(object poco)
 {
     return(RetryPolicy.ExecuteAsync(() => InternalDb.UpdateAsync(poco)));
 }