共用方式為


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
屬性

適用於