RelationalEntityTypeExtensions.GetFunctionName Method

Definition

Overloads

GetFunctionName(IEntityType)

Returns the name of the function to which the entity type is mapped or null if not mapped to a function.

GetFunctionName(IReadOnlyEntityType)

Returns the name of the function to which the entity type is mapped or null if not mapped to a function.

GetFunctionName(IEntityType)

Returns the name of the function to which the entity type is mapped or null if not mapped to a function.

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

Parameters

entityType
IEntityType

The entity type to get the function name for.

Returns

The name of the function to which the entity type is mapped.

Applies to

GetFunctionName(IReadOnlyEntityType)

Returns the name of the function to which the entity type is mapped or null if not mapped to a function.

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

Parameters

entityType
IReadOnlyEntityType

The entity type to get the function name for.

Returns

The name of the function to which the entity type is mapped.

Applies to