RelationalIndexExtensions.SetDatabaseName 方法

定义

重载

SetDatabaseName(IMutableIndex, String)

设置数据库中索引的名称。

SetDatabaseName(IConventionIndex, String, Boolean)

设置数据库中索引的名称。

SetDatabaseName(IMutableIndex, String)

设置数据库中索引的名称。

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

参数

index
IMutableIndex

索引。

name
String

要设置的值。

适用于

SetDatabaseName(IConventionIndex, String, Boolean)

设置数据库中索引的名称。

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

参数

index
IConventionIndex

索引。

name
String

要设置的值。

fromDataAnnotation
Boolean

指示是否使用数据注释指定配置。

返回

配置的值。

适用于