IReadOnlyEntityType.GetDerivedProperties Method

Definition

Gets all non-navigation properties declared on the types derived from this entity type.

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

Returns

Derived non-navigation properties.

Remarks

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

Applies to