次の方法で共有


EntityTypeExtensions.GetDeclaredProperties(IEntityType) メソッド

定義

指定 IEntityTypeした で宣言されているすべての非ナビゲーション プロパティを取得します。

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

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

パラメーター

entityType
IEntityType

エンティティの型。

戻り値

ナビゲーション以外のプロパティを宣言しました。

適用対象