IMutableTypeBase.GetDeclaredComplexProperties Method

Definition

Gets all complex properties declared on this type.

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)

Returns

Declared complex properties.

Remarks

This method does not return properties declared on base types. It is useful when iterating over all types to avoid processing the same property more than once. Use GetComplexProperties() to also return properties declared on base types.

Applies to