EntityTypeExtensions.GetConcreteDerivedTypesInclusive(IEntityType) Method

Definition

Returns all the derived types of the given IEntityType, including the type itself, which are not abstract.

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

Parameters

entityType
IEntityType

The entity type.

Returns

Non-abstract, derived types.

Applies to