IReadOnlyModificationCommand.PropagateResults 方法

定义

重载

PropagateResults(RelationalDataReader)

读取给定 relationalReader 中从数据库返回的结果集列,并将它们传播回相应的 IColumnModification ,从中可将值传播到跟踪实体。

PropagateResults(ValueBuffer)

读取从给定 ValueBuffer 中的数据库返回的值,并将它们传播回相应的 IColumnModification ,从中可将值传播到跟踪的实体。

PropagateResults(RelationalDataReader)

读取给定 relationalReader 中从数据库返回的结果集列,并将它们传播回相应的 IColumnModification ,从中可将值传播到跟踪实体。

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

参数

relationalReader
RelationalDataReader

包含从数据库读取的值的关系读取器。

适用于

PropagateResults(ValueBuffer)

读取从给定 ValueBuffer 中的数据库返回的值,并将它们传播回相应的 IColumnModification ,从中可将值传播到跟踪的实体。

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

参数

valueBuffer
ValueBuffer

包含从数据库读取的值的缓冲区。

适用于