IReadOnlyModificationCommand.PropagateResults Method

Definition

Overloads

PropagateResults(RelationalDataReader)

Reads result set columns returned from the database in the given relationalReader and propagates them back to into the appropriate IColumnModification from which the values can be propagated on to tracked entities.

PropagateResults(ValueBuffer)

Reads values returned from the database in the given ValueBuffer and propagates them back to into the appropriate IColumnModification from which the values can be propagated on to tracked entities.

PropagateResults(RelationalDataReader)

Reads result set columns returned from the database in the given relationalReader and propagates them back to into the appropriate IColumnModification from which the values can be propagated on to tracked entities.

public void PropagateResults (Microsoft.EntityFrameworkCore.Storage.RelationalDataReader relationalReader);
abstract member PropagateResults : Microsoft.EntityFrameworkCore.Storage.RelationalDataReader -> unit
Public Sub PropagateResults (relationalReader As RelationalDataReader)

Parameters

relationalReader
RelationalDataReader

The relational reader containing the values read from the database.

Applies to

PropagateResults(ValueBuffer)

Reads values returned from the database in the given ValueBuffer and propagates them back to into the appropriate IColumnModification from which the values can be propagated on to tracked entities.

public void PropagateResults (Microsoft.EntityFrameworkCore.Storage.ValueBuffer valueBuffer);
abstract member PropagateResults : Microsoft.EntityFrameworkCore.Storage.ValueBuffer -> unit
Public Sub PropagateResults (valueBuffer As ValueBuffer)

Parameters

valueBuffer
ValueBuffer

The buffer containing the values read from the database.

Applies to