Share via


IConventionTypeBaseBuilder.HasChangeTrackingStrategy Method

Definition

Configures the ChangeTrackingStrategy to be used for this type. This strategy indicates how the context detects changes to properties for an instance of the type.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTypeBaseBuilder? HasChangeTrackingStrategy (Microsoft.EntityFrameworkCore.ChangeTrackingStrategy? changeTrackingStrategy, bool fromDataAnnotation = false);
abstract member HasChangeTrackingStrategy : Nullable<Microsoft.EntityFrameworkCore.ChangeTrackingStrategy> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTypeBaseBuilder
Public Function HasChangeTrackingStrategy (changeTrackingStrategy As Nullable(Of ChangeTrackingStrategy), Optional fromDataAnnotation As Boolean = false) As IConventionTypeBaseBuilder

Parameters

changeTrackingStrategy
Nullable<ChangeTrackingStrategy>

The change tracking strategy to be used. null to reset to default.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the ChangeTrackingStrategy was set, null otherwise.

Applies to