EntityTypeExtensions.GetDerivedTypesInclusive(IEntityType) Method

Definition

Returns all derived types of the given IEntityType, including the type itself.

public static System.Collections.Generic.IEnumerable<Microsoft.EntityFrameworkCore.Metadata.IEntityType> GetDerivedTypesInclusive (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
static member GetDerivedTypesInclusive : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> seq<Microsoft.EntityFrameworkCore.Metadata.IEntityType>
<Extension()>
Public Function GetDerivedTypesInclusive (entityType As IEntityType) As IEnumerable(Of IEntityType)

Parameters

entityType
IEntityType

The entity type.

Returns

Derived types.

Applies to