IMutableEntityType.GetDeclaredProperties 方法

定义

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

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

返回

声明的非导航属性。

注解

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

适用于