コード例 #1
0
ファイル: BinaryBulkMerge.cs プロジェクト: mikependon/RepoDB
 /// <summary>
 /// Merges the rows of the <see cref="DataTable"/> into the target table by bulk in an asynchronous way. This operation is inserting a row (if not present), and updating an existing
 /// row (if present), based on the given qualifiers. It uses either of the 'INSERT/UPDATE' and 'ON CONFLICT DO UPDATE' commands of the
 /// PostgreSQL based on the value passed to the '<paramref name="mergeCommandType"/>' argument. Underneath this operation is a call directly to
 /// the existing <see cref="NpgsqlConnection.BeginBinaryExport(string)"/> method via the customized 'BinaryBulkInsertAsync' extended method.
 /// </summary>
 /// <param name="connection">The current connection object in used.</param>
 /// <param name="tableName">The name of the target table from the database. If not specified, the <see cref="DataTable.TableName"/> property will be used.</param>
 /// <param name="table">The source <see cref="DataTable"/> object that contains the rows to be bulk-merged to the target table.</param>
 /// <param name="rowState">The state of the rows to be bulk-merged. If not specified, all the rows of the table will be used.</param>
 /// <param name="qualifiers">The list of qualifier fields to be used during the operation. Ensure to target the indexed columns to make the execution more performant. If not specified, the primary key will be used.</param>
 /// <param name="mappings">The list of mappings to be used. If not specified, only the matching properties/columns from the target table will be used. (This is not the entity mappings, but is working on top of it)</param>
 /// <param name="bulkCopyTimeout">The timeout expiration of the operation (see <see cref="NpgsqlBinaryImporter.Timeout"/>).</param>
 /// <param name="batchSize">The size per batch to be sent to the database. If not specified, all the rows of the table will be sent together in one-go.</param>
 /// <param name="identityBehavior">The behavior of how the identity column would work during the operation.</param>
 /// <param name="mergeCommandType">The value that defines the type of command to be used during the operation.</param>
 /// <param name="pseudoTableType">The value that defines whether an actual or temporary table will be created for the pseudo-table.</param>
 /// <param name="transaction">The current transaction object in used. If not specified, an implicit transaction will be created and used.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> object to be used during the asynchronous operation.</param>
 /// <returns>The number of rows that has been merged into the target table.</returns>
 public static async Task <int> BinaryBulkMergeAsync(this NpgsqlConnection connection,
                                                     string tableName,
                                                     DataTable table,
                                                     DataRowState?rowState          = null,
                                                     IEnumerable <Field> qualifiers = null,
                                                     IEnumerable <NpgsqlBulkInsertMapItem> mappings = null,
                                                     int?bulkCopyTimeout = null,
                                                     int?batchSize       = null,
                                                     BulkImportIdentityBehavior identityBehavior = default,
                                                     BulkImportMergeCommandType mergeCommandType = default,
                                                     BulkImportPseudoTableType pseudoTableType   = default,
                                                     NpgsqlTransaction transaction       = null,
                                                     CancellationToken cancellationToken = default) =>
 await BinaryBulkMergeBaseAsync(connection : connection,
                                tableName : (tableName ?? table?.TableName),
                                table : table,
                                rowState : rowState,
                                qualifiers : qualifiers,
                                mappings : mappings,
                                bulkCopyTimeout : bulkCopyTimeout,
                                batchSize : batchSize,
                                identityBehavior : identityBehavior,
                                mergeCommandType : mergeCommandType,
                                pseudoTableType : pseudoTableType,
                                transaction : transaction,
                                cancellationToken : cancellationToken);
コード例 #2
0
ファイル: BinaryBulkMerge.cs プロジェクト: mikependon/RepoDB
 /// <summary>
 /// Merges a list of entities into the target table by bulk in an asynchronous way. This operation is inserting a row (if not present), and updating an existing
 /// row (if present), based on the given qualifiers. It uses either of the 'INSERT/UPDATE' and 'ON CONFLICT DO UPDATE' commands of the
 /// PostgreSQL based on the value passed to the '<paramref name="mergeCommandType"/>' argument. Underneath this operation is a call directly to
 /// the existing <see cref="NpgsqlConnection.BeginBinaryExport(string)"/> method via the customized 'BinaryBulkInsertAsync' extended method.
 /// </summary>
 /// <typeparam name="TEntity">The type of the entity.</typeparam>
 /// <param name="connection">The current connection object in used.</param>
 /// <param name="tableName">The name of the target table from the database.</param>
 /// <param name="entities">The list of entities to be bulk-merged to the target table.
 /// This can be an <see cref="IEnumerable{T}"/> of the following objects (<typeparamref name="TEntity"/> (as class/model), <see cref="ExpandoObject"/>,
 /// <see cref="IDictionary{TKey, TValue}"/> (of <see cref="string"/>/<see cref="object"/>) and Anonymous Types).</param>
 /// <param name="qualifiers">The list of qualifier fields to be used during the operation. Ensure to target the indexed columns to make the execution more performant. If not specified, the primary key will be used.</param>
 /// <param name="mappings">The list of mappings to be used. If not specified, only the matching properties/columns from the target table will be used. (This is not the entity mappings, but is working on top of it)</param>
 /// <param name="bulkCopyTimeout">The timeout expiration of the operation (see <see cref="NpgsqlBinaryImporter.Timeout"/>).</param>
 /// <param name="batchSize">The size per batch to be sent to the database. If not specified, all the rows of the table will be sent together in one-go.</param>
 /// <param name="identityBehavior">The behavior of how the identity column would work during the operation.</param>
 /// <param name="mergeCommandType">The value that defines the type of command to be used during the operation.</param>
 /// <param name="pseudoTableType">The value that defines whether an actual or temporary table will be created for the pseudo-table.</param>
 /// <param name="transaction">The current transaction object in used. If not specified, an implicit transaction will be created and used.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> object to be used during the asynchronous operation.</param>
 /// <returns>The number of rows that has been merged into the target table.</returns>
 public static async Task <int> BinaryBulkMergeAsync <TEntity>(this NpgsqlConnection connection,
                                                               string tableName,
                                                               IEnumerable <TEntity> entities,
                                                               IEnumerable <Field> qualifiers = null,
                                                               IEnumerable <NpgsqlBulkInsertMapItem> mappings = null,
                                                               int?bulkCopyTimeout = null,
                                                               int?batchSize       = null,
                                                               BulkImportIdentityBehavior identityBehavior = default,
                                                               BulkImportMergeCommandType mergeCommandType = default,
                                                               BulkImportPseudoTableType pseudoTableType   = default,
                                                               NpgsqlTransaction transaction       = null,
                                                               CancellationToken cancellationToken = default)
     where TEntity : class =>
 await BinaryBulkMergeBaseAsync <TEntity>(connection : connection,
                                          tableName : (tableName ?? ClassMappedNameCache.Get <TEntity>()),
                                          entities : entities,
                                          qualifiers : qualifiers,
                                          mappings : mappings,
                                          bulkCopyTimeout : bulkCopyTimeout,
                                          batchSize : batchSize,
                                          identityBehavior : identityBehavior,
                                          mergeCommandType : mergeCommandType,
                                          pseudoTableType : pseudoTableType,
                                          transaction : transaction,
                                          cancellationToken : cancellationToken);
コード例 #3
0
ファイル: BinaryBulkMerge.cs プロジェクト: mikependon/RepoDB
 /// <summary>
 /// Merges the rows of the <see cref="DbDataReader"/> into the target table by bulk. This operation is inserting a row (if not present), and updating an existing
 /// row (if present), based on the given qualifiers. It uses either of the 'INSERT/UPDATE' and 'ON CONFLICT DO UPDATE' commands of the
 /// PostgreSQL based on the value passed to the '<paramref name="mergeCommandType"/>' argument. Underneath this operation is a call directly to
 /// the existing <see cref="NpgsqlConnection.BeginBinaryExport(string)"/> method via the customized 'BinaryBulkInsert' extended method.
 /// </summary>
 /// <param name="connection">The current connection object in used.</param>
 /// <param name="tableName">The name of the target table from the database.</param>
 /// <param name="reader">The instance of <see cref="DbDataReader"/> object that contains the rows to be bulk-merged to the target table.</param>
 /// <param name="qualifiers">The list of qualifier fields to be used during the operation. Ensure to target the indexed columns to make the execution more performant. If not specified, the primary key will be used.</param>
 /// <param name="mappings">The list of mappings to be used. If not specified, only the matching properties/columns from the target table will be used. (This is not the entity mappings, but is working on top of it)</param>
 /// <param name="bulkCopyTimeout">The timeout expiration of the operation (see <see cref="NpgsqlBinaryImporter.Timeout"/>).</param>
 /// <param name="mergeCommandType">The value that defines the type of command to be used during the operation.</param>
 /// <param name="identityBehavior">The behavior of how the identity column would work during the operation.</param>
 /// <param name="pseudoTableType">The value that defines whether an actual or temporary table will be created for the pseudo-table.</param>
 /// <param name="transaction">The current transaction object in used. If not specified, an implicit transaction will be created and used.</param>
 /// <returns>The number of rows that has been merged into the target table.</returns>
 public static int BinaryBulkMerge(this NpgsqlConnection connection,
                                   string tableName,
                                   DbDataReader reader,
                                   IEnumerable <Field> qualifiers = null,
                                   IEnumerable <NpgsqlBulkInsertMapItem> mappings = null,
                                   int?bulkCopyTimeout = null,
                                   BulkImportIdentityBehavior identityBehavior = default,
                                   BulkImportMergeCommandType mergeCommandType = default,
                                   BulkImportPseudoTableType pseudoTableType   = default,
                                   NpgsqlTransaction transaction = null) =>
 BinaryBulkMergeBase(connection: connection,
                     tableName: tableName,
                     reader: reader,
                     qualifiers: qualifiers,
                     mappings: mappings,
                     bulkCopyTimeout: bulkCopyTimeout,
                     identityBehavior: identityBehavior,
                     mergeCommandType: mergeCommandType,
                     pseudoTableType: pseudoTableType,
                     transaction: transaction);
コード例 #4
0
ファイル: BinaryBulkMerge.cs プロジェクト: mikependon/RepoDB
 /// <summary>
 /// Merges a list of entities into the target table by bulk. This operation is inserting a row (if not present), and updating an existing
 /// row (if present), based on the given qualifiers. It uses either of the 'INSERT/UPDATE' and 'ON CONFLICT DO UPDATE' commands of the
 /// PostgreSQL based on the value passed to the '<paramref name="mergeCommandType"/>' argument. Underneath this operation is a call directly to
 /// the existing <see cref="NpgsqlConnection.BeginBinaryExport(string)"/> method via the customized 'BinaryBulkInsert' extended method.
 /// </summary>
 /// <typeparam name="TEntity">The type of the entity.</typeparam>
 /// <param name="repository">The instance of <see cref="BaseRepository{TEntity, TDbConnection}"/> object.</param>
 /// <param name="entities">The list of entities to be bulk-merged to the target table.
 /// This can be an <see cref="IEnumerable{T}"/> of the following objects (<typeparamref name="TEntity"/> (as class/model), <see cref="ExpandoObject"/>,
 /// <see cref="IDictionary{TKey, TValue}"/> (of <see cref="string"/>/<see cref="object"/>) and Anonymous Types).</param>
 /// <param name="qualifiers">The list of qualifier fields to be used during the operation. Ensure to target the indexed columns to make the execution more performant. If not specified, the primary key will be used.</param>
 /// <param name="mappings">The list of mappings to be used. If not specified, only the matching properties/columns from the target table will be used. (This is not the entity mappings, but is working on top of it)</param>
 /// <param name="bulkCopyTimeout">The timeout expiration of the operation (see <see cref="NpgsqlBinaryImporter.Timeout"/>).</param>
 /// <param name="batchSize">The size per batch to be sent to the database. If not specified, all the entities will be sent together in one-go.</param>
 /// <param name="identityBehavior">The behavior of how the identity column would work during the operation.</param>
 /// <param name="mergeCommandType">The value that defines the type of command to be used during the operation.</param>
 /// <param name="pseudoTableType">The value that defines whether an actual or temporary table will be created for the pseudo-table.</param>
 /// <param name="transaction">The current transaction object in used. If not specified, an implicit transaction will be created and used.</param>
 /// <returns>The number of rows that has been merged into the target table.</returns>
 public static int BinaryBulkMerge <TEntity>(this BaseRepository <TEntity, NpgsqlConnection> repository,
                                             IEnumerable <TEntity> entities,
                                             IEnumerable <Field> qualifiers = null,
                                             IEnumerable <NpgsqlBulkInsertMapItem> mappings = null,
                                             int?bulkCopyTimeout = null,
                                             int?batchSize       = null,
                                             BulkImportIdentityBehavior identityBehavior = default,
                                             BulkImportMergeCommandType mergeCommandType = default,
                                             BulkImportPseudoTableType pseudoTableType   = default,
                                             NpgsqlTransaction transaction = null)
     where TEntity : class =>
 repository.DbRepository.BinaryBulkMerge <TEntity>(tableName : ClassMappedNameCache.Get <TEntity>(),
                                                   entities : entities,
                                                   qualifiers : qualifiers,
                                                   mappings : mappings,
                                                   bulkCopyTimeout : bulkCopyTimeout,
                                                   batchSize : batchSize,
                                                   identityBehavior : identityBehavior,
                                                   mergeCommandType : mergeCommandType,
                                                   pseudoTableType : pseudoTableType,
                                                   transaction : transaction);
コード例 #5
0
ファイル: BinaryBulkMerge.cs プロジェクト: mikependon/RepoDB
 /// <summary>
 /// Merges the rows of the <see cref="DataTable"/> into the target table by bulk. This operation is inserting a row (if not present), and updating an existing
 /// row (if present), based on the given qualifiers. It uses either of the 'INSERT/UPDATE' and 'ON CONFLICT DO UPDATE' commands of the
 /// PostgreSQL based on the value passed to the '<paramref name="mergeCommandType"/>' argument. Underneath this operation is a call directly to
 /// the existing <see cref="NpgsqlConnection.BeginBinaryExport(string)"/> method via the customized 'BinaryBulkInsert' extended method.
 /// </summary>
 /// <param name="connection">The current connection object in used.</param>
 /// <param name="table">The source <see cref="DataTable"/> object that contains the rows to be bulk-merged to the target table.</param>
 /// <param name="rowState">The state of the rows to be bulk-merged. If not specified, all the rows of the table will be used.</param>
 /// <param name="qualifiers">The list of qualifier fields to be used during the operation. Ensure to target the indexed columns to make the execution more performant. If not specified, the primary key will be used.</param>
 /// <param name="mappings">The list of mappings to be used. If not specified, only the matching properties/columns from the target table will be used. (This is not the entity mappings, but is working on top of it)</param>
 /// <param name="bulkCopyTimeout">The timeout expiration of the operation (see <see cref="NpgsqlBinaryImporter.Timeout"/>).</param>
 /// <param name="batchSize">The size per batch to be sent to the database. If not specified, all the rows of the table will be sent together in one-go.</param>
 /// <param name="identityBehavior">The behavior of how the identity column would work during the operation.</param>
 /// <param name="mergeCommandType">The value that defines the type of command to be used during the operation.</param>
 /// <param name="pseudoTableType">The value that defines whether an actual or temporary table will be created for the pseudo-table.</param>
 /// <param name="transaction">The current transaction object in used. If not specified, an implicit transaction will be created and used.</param>
 /// <returns>The number of rows that has been merged into the target table.</returns>
 public static int BinaryBulkMerge(this NpgsqlConnection connection,
                                   DataTable table,
                                   DataRowState?rowState          = null,
                                   IEnumerable <Field> qualifiers = null,
                                   IEnumerable <NpgsqlBulkInsertMapItem> mappings = null,
                                   int?bulkCopyTimeout = null,
                                   int?batchSize       = null,
                                   BulkImportIdentityBehavior identityBehavior = default,
                                   BulkImportMergeCommandType mergeCommandType = default,
                                   BulkImportPseudoTableType pseudoTableType   = default,
                                   NpgsqlTransaction transaction = null) =>
 BinaryBulkMerge(connection: connection,
                 tableName: table?.TableName,
                 table: table,
                 rowState: rowState,
                 qualifiers: qualifiers,
                 mappings: mappings,
                 bulkCopyTimeout: bulkCopyTimeout,
                 batchSize: batchSize,
                 identityBehavior: identityBehavior,
                 mergeCommandType: mergeCommandType,
                 pseudoTableType: pseudoTableType,
                 transaction: transaction);
コード例 #6
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="connection"></param>
        /// <param name="tableName"></param>
        /// <param name="reader"></param>
        /// <param name="qualifiers"></param>
        /// <param name="mappings"></param>
        /// <param name="bulkCopyTimeout"></param>
        /// <param name="identityBehavior"></param>
        /// <param name="mergeCommandType"></param>
        /// <param name="pseudoTableType"></param>
        /// <param name="transaction"></param>
        /// <param name="cancellationToken"></param>
        /// <returns></returns>
        private static async Task <int> BinaryBulkMergeBaseAsync(this NpgsqlConnection connection,
                                                                 string tableName,
                                                                 DbDataReader reader,
                                                                 IEnumerable <Field> qualifiers = null,
                                                                 IEnumerable <NpgsqlBulkInsertMapItem> mappings = null,
                                                                 int?bulkCopyTimeout = null,
                                                                 BulkImportIdentityBehavior identityBehavior = default,
                                                                 BulkImportMergeCommandType mergeCommandType = default,
                                                                 BulkImportPseudoTableType pseudoTableType   = default,
                                                                 NpgsqlTransaction transaction       = null,
                                                                 CancellationToken cancellationToken = default)
        {
            var dbSetting = connection.GetDbSetting();
            var dbFields  = await DbFieldCache.GetAsync(connection, tableName, transaction, cancellationToken);

            var pseudoTableName = tableName;

            return(await PseudoBasedBinaryImportAsync(connection,
                                                      tableName,
                                                      bulkCopyTimeout,
                                                      dbFields,

                                                      // getPseudoTableName
                                                      () =>
                                                      pseudoTableName = GetBinaryBulkMergePseudoTableName(tableName, dbSetting),

                                                      // getMappings
                                                      () =>
            {
                var includeIdentity = identityBehavior == BulkImportIdentityBehavior.KeepIdentity;
                var includePrimary = true;

                return mappings = mappings?.Any() == true ? mappings :
                                  GetMappings(reader,
                                              dbFields,
                                              includePrimary,
                                              includeIdentity,
                                              dbSetting);
            },

                                                      // binaryImport
                                                      async (tableName) =>
                                                      await connection.BinaryImportAsync(tableName,
                                                                                         reader,
                                                                                         mappings,
                                                                                         dbFields,
                                                                                         bulkCopyTimeout,
                                                                                         identityBehavior,
                                                                                         dbSetting,
                                                                                         transaction,
                                                                                         cancellationToken),

                                                      // getMergeToPseudoCommandText
                                                      () =>
                                                      GetMergeCommandText(pseudoTableName,
                                                                          tableName,
                                                                          mappings.Select(mapping => new Field(mapping.DestinationColumn)),
                                                                          qualifiers,
                                                                          dbFields.FirstOrDefault(dbField => dbField.IsPrimary)?.AsField(),
                                                                          dbFields.FirstOrDefault(dbField => dbField.IsIdentity)?.AsField(),
                                                                          identityBehavior,
                                                                          mergeCommandType,
                                                                          dbSetting),

                                                      // setIdentities
                                                      null,

                                                      qualifiers,
                                                      false,
                                                      identityBehavior : identityBehavior,
                                                      pseudoTableType : pseudoTableType,
                                                      dbSetting,
                                                      transaction : transaction,
                                                      cancellationToken));
        }
コード例 #7
0
        /// <summary>
        ///
        /// </summary>
        /// <typeparam name="TEntity"></typeparam>
        /// <param name="connection"></param>
        /// <param name="tableName"></param>
        /// <param name="entities"></param>
        /// <param name="qualifiers"></param>
        /// <param name="mappings"></param>
        /// <param name="bulkCopyTimeout"></param>
        /// <param name="batchSize"></param>
        /// <param name="identityBehavior"></param>
        /// <param name="mergeCommandType"></param>
        /// <param name="pseudoTableType"></param>
        /// <param name="transaction"></param>
        /// <returns></returns>
        private static int BinaryBulkMergeBase <TEntity>(this NpgsqlConnection connection,
                                                         string tableName,
                                                         IEnumerable <TEntity> entities,
                                                         IEnumerable <Field> qualifiers = null,
                                                         IEnumerable <NpgsqlBulkInsertMapItem> mappings = null,
                                                         int?bulkCopyTimeout = null,
                                                         int?batchSize       = null,
                                                         BulkImportIdentityBehavior identityBehavior = default,
                                                         BulkImportMergeCommandType mergeCommandType = default,
                                                         BulkImportPseudoTableType pseudoTableType   = default,
                                                         NpgsqlTransaction transaction = null)
            where TEntity : class
        {
            var entityType      = entities?.First()?.GetType() ?? typeof(TEntity); // Solving the anonymous types
            var isDictionary    = entityType.IsDictionaryStringObject();
            var dbSetting       = connection.GetDbSetting();
            var dbFields        = DbFieldCache.Get(connection, tableName, transaction);
            var pseudoTableName = tableName;

            return(PseudoBasedBinaryImport(connection,
                                           tableName,
                                           bulkCopyTimeout,
                                           dbFields,

                                           // getPseudoTableName
                                           () =>
                                           pseudoTableName = GetBinaryBulkMergePseudoTableName(tableName ?? ClassMappedNameCache.Get <TEntity>(), dbSetting),

                                           // getMappings
                                           () =>
            {
                var includeIdentity = identityBehavior == BulkImportIdentityBehavior.KeepIdentity;
                var includePrimary = true;

                return mappings = mappings?.Any() == true ? mappings :
                                  isDictionary ?
                                  GetMappings(entities?.First() as IDictionary <string, object>,
                                              dbFields,
                                              includePrimary,
                                              includeIdentity,
                                              dbSetting) :
                                  GetMappings(dbFields,
                                              PropertyCache.Get(entityType),
                                              includePrimary,
                                              includeIdentity,
                                              dbSetting);
            },

                                           // binaryImport
                                           (tableName) =>
                                           connection.BinaryImport <TEntity>(tableName,
                                                                             entities,
                                                                             mappings,
                                                                             dbFields,
                                                                             bulkCopyTimeout,
                                                                             batchSize,
                                                                             identityBehavior,
                                                                             dbSetting,
                                                                             transaction),

                                           // getMergeToPseudoCommandText
                                           () =>
                                           GetMergeCommandText(pseudoTableName,
                                                               tableName,
                                                               mappings.Select(mapping => new Field(mapping.DestinationColumn)),
                                                               qualifiers,
                                                               dbFields.FirstOrDefault(dbField => dbField.IsPrimary)?.AsField(),
                                                               dbFields.FirstOrDefault(dbField => dbField.IsIdentity)?.AsField(),
                                                               identityBehavior,
                                                               mergeCommandType,
                                                               dbSetting),

                                           // setIdentities
                                           (identityResults) =>
                                           SetIdentities(entityType, entities, dbFields, identityResults, dbSetting),

                                           qualifiers,
                                           false,
                                           identityBehavior,
                                           pseudoTableType,
                                           dbSetting,
                                           transaction));
        }
コード例 #8
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="connection"></param>
        /// <param name="tableName"></param>
        /// <param name="table"></param>
        /// <param name="rowState"></param>
        /// <param name="qualifiers"></param>
        /// <param name="mappings"></param>
        /// <param name="bulkCopyTimeout"></param>
        /// <param name="batchSize"></param>
        /// <param name="identityBehavior"></param>
        /// <param name="mergeCommandType"></param>
        /// <param name="pseudoTableType"></param>
        /// <param name="transaction"></param>
        /// <returns></returns>
        private static int BinaryBulkMergeBase(this NpgsqlConnection connection,
                                               string tableName,
                                               DataTable table,
                                               DataRowState?rowState          = null,
                                               IEnumerable <Field> qualifiers = null,
                                               IEnumerable <NpgsqlBulkInsertMapItem> mappings = null,
                                               int?bulkCopyTimeout = null,
                                               int?batchSize       = null,
                                               BulkImportIdentityBehavior identityBehavior = default,
                                               BulkImportMergeCommandType mergeCommandType = default,
                                               BulkImportPseudoTableType pseudoTableType   = default,
                                               NpgsqlTransaction transaction = null)
        {
            var dbSetting       = connection.GetDbSetting();
            var dbFields        = DbFieldCache.Get(connection, tableName, transaction);
            var pseudoTableName = tableName;

            return(PseudoBasedBinaryImport(connection,
                                           tableName,
                                           bulkCopyTimeout,
                                           dbFields,

                                           // getPseudoTableName
                                           () =>
                                           pseudoTableName = GetBinaryBulkMergePseudoTableName(tableName, dbSetting),

                                           // getMappings
                                           () =>
            {
                var includeIdentity = identityBehavior == BulkImportIdentityBehavior.KeepIdentity;
                var includePrimary = true;

                return mappings = mappings?.Any() == true ? mappings :
                                  GetMappings(table,
                                              dbFields,
                                              includePrimary,
                                              includeIdentity,
                                              dbSetting);
            },

                                           // binaryImport
                                           (tableName) =>
                                           connection.BinaryImport(tableName,
                                                                   table,
                                                                   rowState,
                                                                   mappings,
                                                                   dbFields,
                                                                   bulkCopyTimeout,
                                                                   batchSize,
                                                                   identityBehavior,
                                                                   dbSetting,
                                                                   transaction),

                                           // getMergeToPseudoCommandText
                                           () =>
                                           GetMergeCommandText(pseudoTableName,
                                                               tableName,
                                                               mappings.Select(mapping => new Field(mapping.DestinationColumn)),
                                                               qualifiers,
                                                               dbFields.FirstOrDefault(dbField => dbField.IsPrimary)?.AsField(),
                                                               dbFields.FirstOrDefault(dbField => dbField.IsIdentity)?.AsField(),
                                                               identityBehavior,
                                                               mergeCommandType,
                                                               dbSetting),

                                           // setIdentities
                                           (identityResults) =>
                                           SetDataTableIdentities(table, dbFields, identityResults, dbSetting),

                                           qualifiers,
                                           false,
                                           identityBehavior: identityBehavior,
                                           pseudoTableType: pseudoTableType,
                                           dbSetting,
                                           transaction: transaction));
        }