public static Task <TEntity> InsertAsync <TKey, TEntity>(this INewEntityStore <TKey, TEntity> newStore, IStorageDbConnection conn, TEntity entityToInsert, IEnumerable <Expression <Func <TEntity, object> > > ignoredFields, IDbTransaction tr, CancellationToken cancellationToken) where TKey : IEquatable <TKey> where TEntity : class, IEntity <TKey> { if (newStore == null) { throw new ArgumentNullException(nameof(newStore)); } return(newStore.InsertAsync(conn, entityToInsert, ignoredFields, null, tr, cancellationToken)); }
public static Task <TEntity> InsertAsync <TKey, TEntity>(this INewEntityStore <TKey, TEntity> newStore, IStorageDbConnection conn, TEntity entityToInsert, AutoIncrementTransformer <TKey, TEntity> atf, CancellationToken cancellationToken) where TKey : IEquatable <TKey> where TEntity : class, IEntity <TKey> { if (newStore == null) { throw new ArgumentNullException(nameof(newStore)); } return(newStore.InsertAsync(conn, entityToInsert, null, atf, null, cancellationToken)); }
public static Task <TEntity> InsertAsync <TKey, TEntity>(this INewEntityStore <TKey, TEntity> newStore, IStorageDbConnection conn, TEntity entityToInsert, IDbTransaction tr) where TKey : IEquatable <TKey> where TEntity : class, IEntity <TKey> { if (newStore == null) { throw new ArgumentNullException(nameof(newStore)); } return(newStore.InsertAsync(conn, entityToInsert, null, null, tr, default(CancellationToken))); }
public static Task <TEntity> InsertAutoIncrementAsync <TKey, TEntity>(this INewEntityStore <TKey, TEntity> newStore, IStorageDbConnection conn, TEntity entityToInsert, IDbTransaction tr, CancellationToken cancellationToken) where TKey : IEquatable <TKey> where TEntity : class, IEntity <TKey> { if (newStore == null) { throw new ArgumentNullException(nameof(newStore)); } return(newStore.InsertAsync(conn, entityToInsert, new Expression <Func <TEntity, object> >[] { _ => _.Id, }, (a, b) => b.Id = a, tr, cancellationToken)); }
public static TEntity Insert <TKey, TEntity>(this INewEntityStore <TKey, TEntity> newStore, IStorageDbConnection conn, TEntity entityToInsert, IEnumerable <Expression <Func <TEntity, object> > > ignoredFields, AutoIncrementTransformer <TKey, TEntity> atf) where TKey : IEquatable <TKey> where TEntity : class, IEntity <TKey> { if (newStore == null) { throw new ArgumentNullException(nameof(newStore)); } return(newStore.Insert(conn, entityToInsert, ignoredFields, atf, null)); }
public static TEntity Insert <TKey, TEntity>(this INewEntityStore <TKey, TEntity> newStore, IStorageDbConnection conn, TEntity entityToInsert, AutoIncrementTransformer <TKey, TEntity> atf, IDbTransaction tr) where TKey : IEquatable <TKey> where TEntity : class, IEntity <TKey> { if (newStore == null) { throw new ArgumentNullException(nameof(newStore)); } return(newStore.Insert(conn, entityToInsert, null, atf, tr)); }
// auto_increment = true public static TEntity Insert <TKey, TEntity>(this INewEntityStore <TKey, TEntity> newStore, IStorageDbConnection conn, TEntity entityToInsert) where TKey : IEquatable <TKey> where TEntity : class, IEntity <TKey> { if (newStore == null) { throw new ArgumentNullException(nameof(newStore)); } return(newStore.Insert(conn, entityToInsert, null, null, null)); }
// auto_increment public static TEntity InsertAutoIncrement <TKey, TEntity>(this INewEntityStore <TKey, TEntity> newStore, IStorageDbConnection conn, TEntity entityToInsert) where TKey : IEquatable <TKey> where TEntity : class, IEntity <TKey> { if (newStore == null) { throw new ArgumentNullException(nameof(newStore)); } return(newStore.Insert(conn, entityToInsert, new Expression <Func <TEntity, object> >[] { _ => _.Id, }, (a, b) => b.Id = a, null)); }