RelationalEntityTypeExtensions.GetIsTableExcludedFromMigrationsConfigurationSource Method

Definition

Overloads

GetIsTableExcludedFromMigrationsConfigurationSource(IConventionEntityType)

Gets the ConfigurationSource for IsTableExcludedFromMigrations(IReadOnlyEntityType).

GetIsTableExcludedFromMigrationsConfigurationSource(IConventionEntityType, StoreObjectIdentifier)

Gets the ConfigurationSource for IsTableExcludedFromMigrations(IReadOnlyEntityType, StoreObjectIdentifier).

GetIsTableExcludedFromMigrationsConfigurationSource(IConventionEntityType)

public static Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource? GetIsTableExcludedFromMigrationsConfigurationSource (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType);
static member GetIsTableExcludedFromMigrationsConfigurationSource : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType -> Nullable<Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource>
<Extension()>
Public Function GetIsTableExcludedFromMigrationsConfigurationSource (entityType As IConventionEntityType) As Nullable(Of ConfigurationSource)

Parameters

entityType
IConventionEntityType

The entity type to find configuration source for.

Returns

The ConfigurationSource for IsTableExcludedFromMigrations(IReadOnlyEntityType).

Applies to

GetIsTableExcludedFromMigrationsConfigurationSource(IConventionEntityType, StoreObjectIdentifier)

public static Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource? GetIsTableExcludedFromMigrationsConfigurationSource (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member GetIsTableExcludedFromMigrationsConfigurationSource : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType * StoreObjectIdentifier -> Nullable<Microsoft.EntityFrameworkCore.Metadata.ConfigurationSource>
<Extension()>
Public Function GetIsTableExcludedFromMigrationsConfigurationSource (entityType As IConventionEntityType, ByRef storeObject As StoreObjectIdentifier) As Nullable(Of ConfigurationSource)

Parameters

entityType
IConventionEntityType

The entity type to find configuration source for.

storeObject
StoreObjectIdentifier

The identifier of the table-like store object.

Returns

The ConfigurationSource for IsTableExcludedFromMigrations(IReadOnlyEntityType, StoreObjectIdentifier).

Applies to