EntityTypeExtensions.GetRootType(IEntityType) Method

Definition

Gets the root base type for a given entity type.

public static Microsoft.EntityFrameworkCore.Metadata.IEntityType GetRootType (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType);
static member GetRootType : Microsoft.EntityFrameworkCore.Metadata.IEntityType -> Microsoft.EntityFrameworkCore.Metadata.IEntityType
<Extension()>
Public Function GetRootType (entityType As IEntityType) As IEntityType

Parameters

entityType
IEntityType

The type to find the root of.

Returns

The root base type. If the given entity type is not a derived type, then the same entity type is returned.

Applies to