IMutableEntityType.AddIndex 方法

定义

重载

AddIndex(IMutableProperty)

向此实体类型添加未命名索引。

AddIndex(IReadOnlyList<IMutableProperty>)

向此实体类型添加未命名索引。

AddIndex(IMutableProperty, String)

向此实体类型添加命名索引。

AddIndex(IReadOnlyList<IMutableProperty>, String)

向此实体类型添加命名索引。

AddIndex(IMutableProperty)

向此实体类型添加未命名索引。

public virtual Microsoft.EntityFrameworkCore.Metadata.IMutableIndex AddIndex (Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property);
abstract member AddIndex : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
override this.AddIndex : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Overridable Function AddIndex (property As IMutableProperty) As IMutableIndex

参数

property
IMutableProperty

要编制索引的属性。

返回

新建的索引。

适用于

AddIndex(IReadOnlyList<IMutableProperty>)

向此实体类型添加未命名索引。

public Microsoft.EntityFrameworkCore.Metadata.IMutableIndex AddIndex (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IMutableProperty> properties);
abstract member AddIndex : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IMutableProperty> -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Function AddIndex (properties As IReadOnlyList(Of IMutableProperty)) As IMutableIndex

参数

properties
IReadOnlyList<IMutableProperty>

要编制索引的属性。

返回

新建的索引。

适用于

AddIndex(IMutableProperty, String)

向此实体类型添加命名索引。

public virtual Microsoft.EntityFrameworkCore.Metadata.IMutableIndex AddIndex (Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property, string name);
abstract member AddIndex : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty * string -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
override this.AddIndex : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty * string -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Overridable Function AddIndex (property As IMutableProperty, name As String) As IMutableIndex

参数

property
IMutableProperty

要编制索引的属性。

name
String

索引的名称。

返回

新建的索引。

适用于

AddIndex(IReadOnlyList<IMutableProperty>, String)

向此实体类型添加命名索引。

public Microsoft.EntityFrameworkCore.Metadata.IMutableIndex AddIndex (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IMutableProperty> properties, string name);
abstract member AddIndex : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IMutableProperty> * string -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Function AddIndex (properties As IReadOnlyList(Of IMutableProperty), name As String) As IMutableIndex

参数

properties
IReadOnlyList<IMutableProperty>

要编制索引的属性。

name
String

索引的名称。

返回

新建的索引。

适用于