ModificationCommand.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 virtual void PropagateResults (Microsoft.EntityFrameworkCore.Storage.RelationalDataReader relationalReader);
abstract member PropagateResults : Microsoft.EntityFrameworkCore.Storage.RelationalDataReader -> unit
override this.PropagateResults : Microsoft.EntityFrameworkCore.Storage.RelationalDataReader -> unit
Public Overridable Sub PropagateResults (relationalReader As RelationalDataReader)

Parameters

relationalReader
RelationalDataReader

The relational reader containing the values read from the database.

Implements

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 virtual void PropagateResults (Microsoft.EntityFrameworkCore.Storage.ValueBuffer valueBuffer);
abstract member PropagateResults : Microsoft.EntityFrameworkCore.Storage.ValueBuffer -> unit
override this.PropagateResults : Microsoft.EntityFrameworkCore.Storage.ValueBuffer -> unit
Public Overridable Sub PropagateResults (valueBuffer As ValueBuffer)

Parameters

valueBuffer
ValueBuffer

The buffer containing the values read from the database.

Implements

Applies to