IReadOnlyTypeBase.GetDerivedComplexProperties Method

Definition

Gets the complex properties declared on the types derived from this type.

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

Returns

Derived complex properties.

Remarks

This method does not return complex properties declared on the given type itself. Use GetComplexProperties() to return complex properties declared on this and base typed types.

Applies to