MutableEntityTypeExtensions.GetDeclaredProperties(IMutableEntityType) 方法

定义

获取在给定 IMutableEntityType上声明的所有非导航属性。

此方法不返回在基类型上声明的属性。 循环访问所有实体类型时,它很有用,以避免多次处理同一属性。 使用 GetProperties() 还返回在基类型上声明的属性。

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

参数

entityType
IMutableEntityType

实体类型。

返回

声明的非导航属性。

适用于