ModificationCommand.PropagateResults Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PropagateResults(RelationalDataReader) |
Reads result set columns returned from the database in the given |
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
Entity Framework