BatchSize
Specifies the maximum number of rows included in each batch operation. Set to 0 to submit the entire batch as a single request.
Data Type
int
Default Value
0
Remarks
This property controls the size of each batch submitted during batch operations. When set to a value greater than 0, the driver splits the entire operation into smaller batches, each containing the specified number of rows. These smaller batches are submitted to the server individually.
This property is useful for scenarios where the server imposes limits on the size of requests. By splitting the operation into smaller parts, you can work around these limitations and ensure successful batch processing.