EntityTypeExtensions.IsAssignableFrom(IEntityType, IEntityType) Method

Definition

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

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

Parameters

entityType
IEntityType

The base entity type.

derivedType
IEntityType

The entity type to check if it derives from entityType.

Returns

true if derivedType derives from (or is the same as) entityType, otherwise false.

Applies to