RelationalEntityTypeExtensions.GetSchemaQualifiedTableName Method

Definition

Overloads

GetSchemaQualifiedTableName(IEntityType)

Returns the name of the table to which the entity type is mapped prepended by the schema or null if not mapped to a table.

GetSchemaQualifiedTableName(IReadOnlyEntityType)

Returns the name of the table to which the entity type is mapped prepended by the schema or null if not mapped to a table.

GetSchemaQualifiedTableName(IEntityType)

Returns the name of the table to which the entity type is mapped prepended by the schema or null if not mapped to a table.

public static string GetSchemaQualifiedTableName (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
static member GetSchemaQualifiedTableName : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> string
<Extension()>
Public Function GetSchemaQualifiedTableName (entityType As IEntityType) As String

Parameters

entityType
IEntityType

The entity type to get the table name for.

Returns

The name of the table to which the entity type is mapped prepended by the schema.

Applies to

GetSchemaQualifiedTableName(IReadOnlyEntityType)

Returns the name of the table to which the entity type is mapped prepended by the schema or null if not mapped to a table.

public static string? GetSchemaQualifiedTableName (this Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType entityType);
static member GetSchemaQualifiedTableName : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType -> string
<Extension()>
Public Function GetSchemaQualifiedTableName (entityType As IReadOnlyEntityType) As String

Parameters

entityType
IReadOnlyEntityType

The entity type to get the table name for.

Returns

The name of the table to which the entity type is mapped prepended by the schema.

Applies to