Share via


CosmosEntityTypeBuilderExtensions.CanSetDefaultTimeToLive Method

Definition

Returns a value indicating whether the default time to live can be set from the current configuration source

public static bool CanSetDefaultTimeToLive (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, int? seconds, bool fromDataAnnotation = false);
static member CanSetDefaultTimeToLive : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder * Nullable<int> * bool -> bool
<Extension()>
Public Function CanSetDefaultTimeToLive (entityTypeBuilder As IConventionEntityTypeBuilder, seconds As Nullable(Of Integer), Optional fromDataAnnotation As Boolean = false) As Boolean

Parameters

entityTypeBuilder
IConventionEntityTypeBuilder

The builder for the entity type being configured.

seconds
Nullable<Int32>

The time to live.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the configuration can be applied.

Remarks

See Modeling entity types and relationships, and Accessing Azure Cosmos DB with EF Core for more information and examples.

Applies to