Esempio n. 1
0
        /// <summary>
        /// Attempt to insert an array of entities to the database, or update them if they already exist
        /// </summary>
        /// <typeparam name="TEntity">The type of the entity being upserted</typeparam>
        /// <param name="dbSet">The db set where the items will be upserted</param>
        /// <param name="entities">The entities that are being upserted</param>
        /// <returns>The upsert command builder that is used to configure and run the upsert operation</returns>
        public static UpsertCommandBuilder <TEntity> UpsertRange <TEntity>(this DbSet <TEntity> dbSet, IEnumerable <TEntity> entities)
            where TEntity : class
        {
            var dbContext = dbSet.GetService <ICurrentDbContext>().Context;

            return(UpsertRange(dbContext, entities));
        }
Esempio n. 2
0
        /// <summary>
        /// Attempt to insert an entity to the database, or update it if one already exists
        /// </summary>
        /// <typeparam name="TEntity">The type of the entity being upserted</typeparam>
        /// <param name="dbSet">The db set where the item will be upserted</param>
        /// <param name="entity">The entity that is being upserted</param>
        /// <returns>The upsert command builder that is used to configure and run the upsert operation</returns>
        public static UpsertCommandBuilder <TEntity> Upsert <TEntity>(this DbSet <TEntity> dbSet, TEntity entity)
            where TEntity : class
        {
            var dbContext = dbSet.GetService <ICurrentDbContext>().Context;

            return(Upsert(dbContext, entity));
        }
        /// <summary>
        /// Attempt to insert an entity to the database, or update it if one already exists
        /// </summary>
        /// <typeparam name="TEntity">The type of the entity being upserted</typeparam>
        /// <param name="dbSet">The db set where the item will be upserted</param>
        /// <param name="entity">The entity that is being upserted</param>
        /// <returns>The upsert command builder that is used to configure and run the upsert operation</returns>
        public static UpsertCommandBuilder <TEntity> Upsert <TEntity>(this DbSet <TEntity> dbSet, TEntity entity)
            where TEntity : class
        {
            if (dbSet == null)
            {
                throw new ArgumentNullException(nameof(dbSet));
            }
            if (entity == null)
            {
                throw new ArgumentNullException(nameof(entity));
            }

            var dbContext = dbSet.GetService <ICurrentDbContext>().Context;

            return(Upsert(dbContext, entity));
        }