RelationalEntityTypeExtensions.GetSchemaQualifiedViewName Method

Definition

Overloads

GetSchemaQualifiedViewName(IEntityType)

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

GetSchemaQualifiedViewName(IReadOnlyEntityType)

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

GetSchemaQualifiedViewName(IEntityType)

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

public static string GetSchemaQualifiedViewName (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
static member GetSchemaQualifiedViewName : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> string
<Extension()>
Public Function GetSchemaQualifiedViewName (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

GetSchemaQualifiedViewName(IReadOnlyEntityType)

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

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

Parameters

entityType
IReadOnlyEntityType

The entity type to get the view name for.

Returns

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

Applies to