IEntityType.GetDerivedProperties Method

Definition

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

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.

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

Returns

IEnumerable<IProperty>

Derived non-navigation properties.

Applies to