SqlServerEntityTypeBuilderExtensions.CanSetPeriodEnd Method

Definition

Returns a value indicating whether the mapped table can have period end property.

public static bool CanSetPeriodEnd (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, string? propertyName, bool fromDataAnnotation = false);
static member CanSetPeriodEnd : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder * string * bool -> bool
<Extension()>
Public Function CanSetPeriodEnd (entityTypeBuilder As IConventionEntityTypeBuilder, propertyName As String, Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

entityTypeBuilder
IConventionEntityTypeBuilder

The builder for the entity type being configured.

propertyName
String

The name of the period end property.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the mapped table can have period end property.

Remarks

See Using SQL Server temporal tables with EF Core for more information and examples.

Applies to