IReadOnlyEntityType.GetDerivedProperties 方法

定义

获取从此实体类型派生的类型上声明的所有非导航属性。

public System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty> GetDerivedProperties ();
abstract member GetDerivedProperties : unit -> seq<Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty>
Public Function GetDerivedProperties () As IEnumerable(Of IReadOnlyProperty)

返回

派生的非导航属性。

注解

此方法不返回在给定实体类型本身上声明的属性。 使用 GetProperties() 返回在此和基本实体类型类型上声明的属性。

适用于