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

索引的名稱。

傳回

新建立的索引。

適用於