EntityTypeExtensions.IsInOwnershipPath(IEntityType, IEntityType) Method

Definition

Gets a value indicating whether given entity type is in ownership path for this entity type.

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

Parameters

entityType
IEntityType

The entity type.

targetType
IEntityType

Entity type to search for in ownership path.

Returns

true if targetType is in ownership path of entityType, otherwise false.

Applies to