QueryContext.StartTracking 方法

定义

重载

StartTracking(Object, EntityTrackingInfo)

开始跟踪实体。

StartTracking(IEntityType, Object, ValueBuffer)

这是一个支持 Entity Framework Core 基础结构的内部 API,不受与公共 API 相同的兼容性标准的约束。 可能会在任何版本中更改或删除它,恕不另行通知。 应仅在代码中直接使用它,并且非常谨慎,并且知道在更新到新的 Entity Framework Core 版本时,这样做可能会导致应用程序失败。

StartTracking(Object, EntityTrackingInfo)

开始跟踪实体。

public virtual void StartTracking (object entity, Microsoft.EntityFrameworkCore.Query.Internal.EntityTrackingInfo entityTrackingInfo);
abstract member StartTracking : obj * Microsoft.EntityFrameworkCore.Query.Internal.EntityTrackingInfo -> unit
override this.StartTracking : obj * Microsoft.EntityFrameworkCore.Query.Internal.EntityTrackingInfo -> unit
Public Overridable Sub StartTracking (entity As Object, entityTrackingInfo As EntityTrackingInfo)

参数

entity
Object

实体。

entityTrackingInfo
Microsoft.EntityFrameworkCore.Query.Internal.EntityTrackingInfo

描述如何跟踪实体的信息。

适用于

StartTracking(IEntityType, Object, ValueBuffer)

这是一个支持 Entity Framework Core 基础结构的内部 API,不受与公共 API 相同的兼容性标准的约束。 可能会在任何版本中更改或删除它,恕不另行通知。 应仅在代码中直接使用它,并且非常谨慎,并且知道在更新到新的 Entity Framework Core 版本时,这样做可能会导致应用程序失败。

[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.Internal.InternalEntityEntry StartTracking (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, object entity, Microsoft.EntityFrameworkCore.Storage.ValueBuffer valueBuffer);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
abstract member StartTracking : Microsoft.EntityFrameworkCore.Metadata.IEntityType * obj * Microsoft.EntityFrameworkCore.Storage.ValueBuffer -> Microsoft.EntityFrameworkCore.ChangeTracking.Internal.InternalEntityEntry
override this.StartTracking : Microsoft.EntityFrameworkCore.Metadata.IEntityType * obj * Microsoft.EntityFrameworkCore.Storage.ValueBuffer -> Microsoft.EntityFrameworkCore.ChangeTracking.Internal.InternalEntityEntry
Public Overridable Function StartTracking (entityType As IEntityType, entity As Object, valueBuffer As ValueBuffer) As InternalEntityEntry

参数

entityType
IEntityType
entity
Object
valueBuffer
ValueBuffer

返回

Microsoft.EntityFrameworkCore.ChangeTracking.Internal.InternalEntityEntry
属性

适用于