IEntityType.GetDerivedServiceProperties Method

Definition

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

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.

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

Returns

IEnumerable<IServiceProperty>

Derived service properties.

Applies to