IBatchExecutor.Execute Method

Definition

Executes the commands in the batches against the given database connection.

public int Execute (System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Update.ModificationCommandBatch> commandBatches, Microsoft.EntityFrameworkCore.Storage.IRelationalConnection connection);
abstract member Execute : seq<Microsoft.EntityFrameworkCore.Update.ModificationCommandBatch> * Microsoft.EntityFrameworkCore.Storage.IRelationalConnection -> int
Public Function Execute (commandBatches As IEnumerable(Of ModificationCommandBatch), connection As IRelationalConnection) As Integer

Parameters

commandBatches
IEnumerable<ModificationCommandBatch>

The batches to execute.

connection
IRelationalConnection

The database connection to use.

Returns

The total number of rows affected.

Applies to