RelationalEntityTypeExtensions.IsTableExcludedFromMigrations Method

Definition

Overloads

IsTableExcludedFromMigrations(IEntityType)

Gets a value indicating whether the associated table is ignored by Migrations.

IsTableExcludedFromMigrations(IReadOnlyEntityType)

Gets a value indicating whether the associated table is ignored by Migrations.

IsTableExcludedFromMigrations(IReadOnlyEntityType, StoreObjectIdentifier)

Gets a value indicating whether the specified table is ignored by Migrations.

IsTableExcludedFromMigrations(IEntityType)

Gets a value indicating whether the associated table is ignored by Migrations.

public static bool IsTableExcludedFromMigrations (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
static member IsTableExcludedFromMigrations : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> bool
<Extension()>
Public Function IsTableExcludedFromMigrations (entityType As IEntityType) As Boolean

Parameters

entityType
IEntityType

The entity type.

Returns

A value indicating whether the associated table is ignored by Migrations.

Applies to

IsTableExcludedFromMigrations(IReadOnlyEntityType)

Gets a value indicating whether the associated table is ignored by Migrations.

public static bool IsTableExcludedFromMigrations (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType entityType);
static member IsTableExcludedFromMigrations : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType -> bool
<Extension()>
Public Function IsTableExcludedFromMigrations (entityType As IReadOnlyEntityType) As Boolean

Parameters

entityType
IReadOnlyEntityType

The entity type.

Returns

A value indicating whether the associated table is ignored by Migrations.

Applies to

IsTableExcludedFromMigrations(IReadOnlyEntityType, StoreObjectIdentifier)

Gets a value indicating whether the specified table is ignored by Migrations.

public static bool IsTableExcludedFromMigrations (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType entityType, in Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier storeObject);
static member IsTableExcludedFromMigrations : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType * StoreObjectIdentifier -> bool
<Extension()>
Public Function IsTableExcludedFromMigrations (entityType As IReadOnlyEntityType, ByRef storeObject As StoreObjectIdentifier) As Boolean

Parameters

entityType
IReadOnlyEntityType

The entity type.

storeObject
StoreObjectIdentifier

The identifier of the table-like store object.

Returns

A value indicating whether the associated table is ignored by Migrations.

Applies to