次の方法で共有


EntityTypeExtensions.GetDeclaredKeys(IEntityType) メソッド

定義

指定 IEntityTypeした で宣言されているすべてのキーを取得します。

このメソッドは、基本型で宣言されたキーを返しません。 同じキーを複数回処理しないように、すべてのエンティティ型を反復処理する場合に便利です。 を使用して GetKeys() 、基本型で宣言されたキーも返します。

public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IKey> GetDeclaredKeys (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
static member GetDeclaredKeys : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> seq<Microsoft.EntityFrameworkCore.Metadata.IKey>
<Extension()>
Public Function GetDeclaredKeys (entityType As IEntityType) As IEnumerable(Of IKey)

パラメーター

entityType
IEntityType

エンティティの型。

戻り値

宣言されたキー。

適用対象