public static Task UpdateAsync <TKey, TEntity>(this IUpdateStore <TKey, TEntity> updateStore, IStorageDbConnection conn, TEntity entityToUpdate, IEnumerable <Expression <Func <TEntity, object> > > updateFields, TKey value, IDbTransaction tr, CancellationToken cancellationToken)
     where TKey : IEquatable <TKey>
     where TEntity : class, IEntity <TKey>
 {
     if (updateStore == null)
     {
         throw new ArgumentNullException(nameof(updateStore));
     }
     return(updateStore.UpdateAsync(conn, entityToUpdate, updateFields, _ => _.Id, value, tr, cancellationToken));
 }
 public static Task UpdateAsync <TKey, TEntity>(this IUpdateStore <TKey, TEntity> updateStore, IStorageDbConnection conn, TEntity entityToUpdate, Expression <Func <TEntity, object> > id, TKey value)
     where TKey : IEquatable <TKey>
     where TEntity : class, IEntity <TKey>
 {
     if (updateStore == null)
     {
         throw new ArgumentNullException(nameof(updateStore));
     }
     return(updateStore.UpdateAsync(conn, entityToUpdate, null, id, value, null, default(CancellationToken)));
 }
 public static Task UpdateAsync <TKey, TEntity>(this IUpdateStore <TKey, TEntity> updateStore, IStorageDbConnection conn, TEntity entityToUpdate, TKey value, IDbTransaction tr)
     where TKey : IEquatable <TKey>
     where TEntity : class, IEntity <TKey>
 {
     if (updateStore == null)
     {
         throw new ArgumentNullException(nameof(updateStore));
     }
     return(updateStore.UpdateAsync(conn, entityToUpdate, null, _ => _.Id, value, tr, default(CancellationToken)));
 }
Exemple #4
0
 public static Task UpdateAsync <TKey, TEntity>(this IUpdateStore <TKey, TEntity> updateStore, IStorageDbConnection conn, TEntity entityToUpdate, IDbTransaction tr, CancellationToken cancellationToken)
     where TKey : IEquatable <TKey>
     where TEntity : class, IEntity <TKey>
 {
     if (updateStore == null)
     {
         throw new ArgumentNullException(nameof(updateStore));
     }
     return(updateStore.UpdateAsync(conn, entityToUpdate, null, WhereClauseResult.Null, tr, cancellationToken));
 }