EntityTypeExtensions.IsAssignableFrom(IEntityType, IEntityType) 方法

定義

判斷此實體類型是否衍生自 (或與指定實體類型) 相同。

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

參數

entityType
IEntityType

基底實體類型。

derivedType
IEntityType

要檢查其是否衍生自 entityType 的實體類型。

傳回

true 如果 derivedType 衍生自 (或 與) entityType 相同,則為 ,否則 false 為 。

適用於