IMutableEntityType.GetDerivedServiceProperties Method

Definition

Gets all service properties declared on the types derived from this entity type.

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

Returns

Derived service properties.

Remarks

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

Applies to