RelationalEntityTypeExtensions.SetFunctionName Method

Definition

Overloads

SetFunctionName(IMutableEntityType, String)

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

SetFunctionName(IConventionEntityType, String, Boolean)

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

SetFunctionName(IMutableEntityType, String)

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

public static void SetFunctionName (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, string name);
public static void SetFunctionName (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, string? name);
static member SetFunctionName : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType * string -> unit
<Extension()>
Public Sub SetFunctionName (entityType As IMutableEntityType, name As String)

Parameters

entityType
IMutableEntityType

The entity type to set the function name for.

name
String

The name to set.

Applies to

SetFunctionName(IConventionEntityType, String, Boolean)

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

public static string SetFunctionName (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, string name, bool fromDataAnnotation = false);
public static string? SetFunctionName (this Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType entityType, string? name, bool fromDataAnnotation = false);
static member SetFunctionName : Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType * string * bool -> string
<Extension()>
Public Function SetFunctionName (entityType As IConventionEntityType, name As String, Optional fromDataAnnotation As Boolean = false) As String

Parameters

entityType
IConventionEntityType

The entity type to set the function name for.

name
String

The name to set.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The configured value.

Applies to