SqlServerEntityTypeBuilderExtensions.CanSetIsTemporal Method

Definition

Returns a value indicating whether the mapped table can be configured as temporal.

public static bool CanSetIsTemporal (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, bool temporal = true, bool fromDataAnnotation = false);
static member CanSetIsTemporal : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder * bool * bool -> bool
<Extension()>
Public Function CanSetIsTemporal (entityTypeBuilder As IConventionEntityTypeBuilder, Optional temporal As Boolean = true, Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

entityTypeBuilder
IConventionEntityTypeBuilder

The builder for the entity type being configured.

temporal
Boolean

A value indicating whether the table is temporal.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the mapped table can be configured as temporal.

Remarks

See Using SQL Server memory-optimized tables with EF Core for more information and examples.

Applies to