RelationalDbContextOptionsBuilder<TBuilder,TExtension>.MinBatchSize Method

Definition

Configures the minimum number of statements that are needed for a multi-statement command sent to the database during SaveChanges().

public virtual TBuilder MinBatchSize (int minBatchSize);
abstract member MinBatchSize : int -> 'Builder
override this.MinBatchSize : int -> 'Builder
Public Overridable Function MinBatchSize (minBatchSize As Integer) As TBuilder

Parameters

minBatchSize
Int32

The minimum number of statements.

Returns

TBuilder

The same builder instance so that multiple calls can be chained.

Remarks

See Saving data with EF Core for more information and examples.

Applies to