RelationalEntityTypeExtensions.SetViewName Method

Definition

Overloads

SetViewName(IMutableEntityType, String)

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

SetViewName(IConventionEntityType, String, Boolean)

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

SetViewName(IMutableEntityType, String)

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

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

Parameters

entityType
IMutableEntityType

The entity type to set the view name for.

name
String

The name to set.

Applies to

SetViewName(IConventionEntityType, String, Boolean)

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

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

Parameters

entityType
IConventionEntityType

The entity type to set the view 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