IConventionEntityType.GetDeclaredIndexes 方法

定義

取得在此實體類型上宣告的所有索引。

public virtual System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IConventionIndex> GetDeclaredIndexes ();
abstract member GetDeclaredIndexes : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IConventionIndex>
override this.GetDeclaredIndexes : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IConventionIndex>
Public Overridable Function GetDeclaredIndexes () As IEnumerable(Of IConventionIndex)

傳回

宣告的索引。

備註

這個方法不會傳回在基底類型上宣告的索引。 在逐一查看所有實體類型時,它很有用,以避免多次處理相同的索引。 使用 GetIndexes() 也可以傳回在基底類型上宣告的索引。

適用於