EntityTypeExtensions.IsStrictlyDerivedFrom(IEntityType, IEntityType) Method

Definition

Determines if this entity type derives from (but is not the same as) a given entity type.

public static bool IsStrictlyDerivedFrom (this Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, Microsoft.EntityFrameworkCore.Metadata.IEntityType baseType);
static member IsStrictlyDerivedFrom : Microsoft.EntityFrameworkCore.Metadata.IEntityType * Microsoft.EntityFrameworkCore.Metadata.IEntityType -> bool
<Extension()>
Public Function IsStrictlyDerivedFrom (entityType As IEntityType, baseType As IEntityType) As Boolean

Parameters

entityType
IEntityType

The entity type.

baseType
IEntityType

The entity type to check if it is a base type of entityType.

Returns

true if entityType derives from (but is not the same as) baseType, otherwise false.

Applies to