RelationalEntityTypeExtensions.GetViewSchema Method

Definition

Overloads

GetViewSchema(IReadOnlyEntityType)

Returns the database schema that contains the mapped view.

GetViewSchema(IEntityType)

Returns the database schema that contains the mapped view.

GetViewSchema(IReadOnlyEntityType)

Returns the database schema that contains the mapped view.

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

Parameters

entityType
IReadOnlyEntityType

The entity type to get the view schema for.

Returns

The database schema that contains the mapped view.

Applies to

GetViewSchema(IEntityType)

Returns the database schema that contains the mapped view.

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

Parameters

entityType
IEntityType

The entity type to get the view schema for.

Returns

The database schema that contains the mapped view.

Applies to