MetadataWorkspaceExtensions.IsJoinTable 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
如果为 :1 时,我们可推断某个表是 SSDL 中的连接表。 有两个源自该表的关联 2. 表上的两个端是 * 3. 关联上的其他端是 1 4. 表中的属性数等于两个关联的其他端上所有键属性的总和 5. 表中的所有属性都为键属性
命名空间: Microsoft.Data.Entity.Design.DatabaseGeneration
程序集: Microsoft.Data.Entity.Design.DatabaseGeneration(在 Microsoft.Data.Entity.Design.DatabaseGeneration.dll 中)
语法
声明
<ExtensionAttribute> _
Public Shared Function IsJoinTable ( _
entityType As EntityType, _
store As StoreItemCollection _
) As Boolean
用法
Dim entityType As EntityType
Dim store As StoreItemCollection
Dim returnValue As Boolean
returnValue = entityType.IsJoinTable(store)
public static bool IsJoinTable(
this EntityType entityType,
StoreItemCollection store
)
[ExtensionAttribute]
public:
static bool IsJoinTable(
EntityType^ entityType,
StoreItemCollection^ store
)
static member IsJoinTable :
entityType:EntityType *
store:StoreItemCollection -> bool
public static function IsJoinTable(
entityType : EntityType,
store : StoreItemCollection
) : boolean
参数
- entityType
类型:System.Data.Entity.Core.Metadata.Edm.EntityType
要测试的 EntityType。
- store
类型:System.Data.Entity.Core.Metadata.Edm.StoreItemCollection
包含 EntityType 的 StoreItemCollection。
返回值
类型:System.Boolean
如果指定 EntityType 为联接表,则为 true;否则为 false。
使用说明
在 Visual Basic 和 C# 中,可以在 EntityType 类型的任何对象上将此方法作为实例方法来调用。当使用实例方法语法调用此方法时,请省略第一个参数。有关详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/bb384936(v=vs.113)或https://msdn.microsoft.com/zh-cn/library/bb383977(v=vs.113)。