Share via


RuntimeEntityType.FindIndex 方法

定義

多載

FindIndex(IReadOnlyList<IReadOnlyProperty>)

取得在指定屬性上定義的未命名索引。 如果未定義這類索引,則傳 null 回 。

FindIndex(String)

取得具有指定名稱的索引。 如果不存在這類索引,則傳 null 回 。

FindIndex(IReadOnlyList<IReadOnlyProperty>)

取得在指定屬性上定義的未命名索引。 如果未定義這類索引,則傳 null 回 。

public virtual Microsoft.EntityFrameworkCore.Metadata.RuntimeIndex? FindIndex (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> properties);
abstract member FindIndex : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> -> Microsoft.EntityFrameworkCore.Metadata.RuntimeIndex
override this.FindIndex : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> -> Microsoft.EntityFrameworkCore.Metadata.RuntimeIndex
Public Overridable Function FindIndex (properties As IReadOnlyList(Of IReadOnlyProperty)) As RuntimeIndex

參數

properties
IReadOnlyList<IReadOnlyProperty>

要尋找索引的屬性。

傳回

如果找不到索引,則 null 為 。

備註

即使屬性清單相符,也不會傳回具名索引。

適用於

FindIndex(String)

取得具有指定名稱的索引。 如果不存在這類索引,則傳 null 回 。

public virtual Microsoft.EntityFrameworkCore.Metadata.RuntimeIndex? FindIndex (string name);
abstract member FindIndex : string -> Microsoft.EntityFrameworkCore.Metadata.RuntimeIndex
override this.FindIndex : string -> Microsoft.EntityFrameworkCore.Metadata.RuntimeIndex
Public Overridable Function FindIndex (name As String) As RuntimeIndex

參數

name
String

索引的名稱。

傳回

如果找不到索引,則 null 為 。

適用於