IConventionTypeBase.GetDerivedComplexProperties Method

Definition

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

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

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