IMutableEntityType.FindIndex 方法

定義

多載

FindIndex(IReadOnlyProperty)

取得在指定屬性上定義的索引。 如果未定義任何索引,則傳 null 回 。

FindIndex(IReadOnlyList<IProperty>)

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

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

FindIndex(IReadOnlyList<IReadOnlyProperty>)

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

FindIndex(String)

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

FindIndex(IReadOnlyProperty)

取得在指定屬性上定義的索引。 如果未定義任何索引,則傳 null 回 。

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

參數

property
IReadOnlyProperty

要尋找索引的屬性。

傳回

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

適用於

FindIndex(IReadOnlyList<IProperty>)

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

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

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

參數

properties
IReadOnlyList<IProperty>

要尋找索引的屬性。

傳回

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

適用於

FindIndex(IReadOnlyList<IReadOnlyProperty>)

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

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

參數

properties
IReadOnlyList<IReadOnlyProperty>

要尋找索引的屬性。

傳回

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

備註

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

適用於

FindIndex(String)

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

public Microsoft.EntityFrameworkCore.Metadata.IMutableIndex FindIndex (string name);
public Microsoft.EntityFrameworkCore.Metadata.IMutableIndex? FindIndex (string name);
abstract member FindIndex : string -> Microsoft.EntityFrameworkCore.Metadata.IMutableIndex
Public Function FindIndex (name As String) As IMutableIndex

參數

name
String

索引的名稱。

傳回

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

適用於