IMutableTypeBase.GetDeclaredComplexProperties 方法

定义

获取在此类型上声明的所有复杂属性。

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

返回

声明的复杂属性。

注解

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

适用于