RelationalEntityTypeBuilderExtensions.CanExcludeTableFromMigrations Method

Definition

Returns a value indicating whether the table that this entity type is mapped to can be excluded from migrations using the specified configuration source.

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

Parameters

entityTypeBuilder
IConventionEntityTypeBuilder

The builder for the entity type being configured.

excludedFromMigrations
Nullable<Boolean>

A value indicating whether the table should be managed by migrations.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

true if the configuration can be applied.

Remarks

See Database migrations for more information and examples.

Applies to