MetadataWorkspaceExtensions.GetDependentProperty 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
如果这是参与引用约束的主体端的属性,则此方法将返回依赖端上的相应属性。
命名空间: Microsoft.Data.Entity.Design.DatabaseGeneration
程序集: Microsoft.Data.Entity.Design.DatabaseGeneration(在 Microsoft.Data.Entity.Design.DatabaseGeneration.dll 中)
语法
声明
<ExtensionAttribute> _
Public Shared Function GetDependentProperty ( _
property As EdmProperty, _
refConstraint As ReferentialConstraint _
) As EdmProperty
用法
Dim property As EdmProperty
Dim refConstraint As ReferentialConstraint
Dim returnValue As EdmProperty
returnValue = property.GetDependentProperty(refConstraint)
public static EdmProperty GetDependentProperty(
this EdmProperty property,
ReferentialConstraint refConstraint
)
[ExtensionAttribute]
public:
static EdmProperty^ GetDependentProperty(
EdmProperty^ property,
ReferentialConstraint^ refConstraint
)
static member GetDependentProperty :
property:EdmProperty *
refConstraint:ReferentialConstraint -> EdmProperty
public static function GetDependentProperty(
property : EdmProperty,
refConstraint : ReferentialConstraint
) : EdmProperty
参数
- property
类型:System.Data.Entity.Core.Metadata.Edm.EdmProperty
引用约束的主体端上的属性
- refConstraint
类型:System.Data.Entity.Core.Metadata.Edm.ReferentialConstraint
引用约束。
返回值
类型:System.Data.Entity.Core.Metadata.Edm.EdmProperty
引用约束的依赖端上的属性,该属性与主体端上的属性对应
使用说明
在 Visual Basic 和 C# 中,可以在 EdmProperty 类型的任何对象上将此方法作为实例方法来调用。当使用实例方法语法调用此方法时,请省略第一个参数。有关详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/bb384936(v=vs.113)或https://msdn.microsoft.com/zh-cn/library/bb383977(v=vs.113)。
异常
例外 | 条件 |
---|---|
ArgumentNullException | 如果 ref 约束为 null |
InvalidOperationException | 如果在引用约束的主体端上的属性中找不到该属性 |