DbExpressionBuilder.Property 方法 (DbExpression, RelationshipEndMember)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
创建一个新的 DbPropertyExpression,它表示对指定关系端成员的检索。
命名空间: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<ExtensionAttribute> _
<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters", Justification := "required for this feature")> _
Public Shared Function Property ( _
instance As DbExpression, _
relationshipEnd As RelationshipEndMember _
) As DbPropertyExpression
用法
Dim instance As DbExpression
Dim relationshipEnd As RelationshipEndMember
Dim returnValue As DbPropertyExpression
returnValue = instance.Property(relationshipEnd)
[SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters", Justification = "required for this feature")]
public static DbPropertyExpression Property(
this DbExpression instance,
RelationshipEndMember relationshipEnd
)
[ExtensionAttribute]
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1011:ConsiderPassingBaseTypesAsParameters", Justification = L"required for this feature")]
public:
static DbPropertyExpression^ Property(
DbExpression^ instance,
RelationshipEndMember^ relationshipEnd
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters", Justification = "required for this feature")>]
static member Property :
instance:DbExpression *
relationshipEnd:RelationshipEndMember -> DbPropertyExpression
public static function Property(
instance : DbExpression,
relationshipEnd : RelationshipEndMember
) : DbPropertyExpression
参数
- instance
类型:System.Data.Entity.Core.Common.CommandTrees.DbExpression
要从中检索关系端成员的实例。
- relationshipEnd
类型:System.Data.Entity.Core.Metadata.Edm.RelationshipEndMember
要检索的关系端成员的元数据。
返回值
类型:System.Data.Entity.Core.Common.CommandTrees.DbPropertyExpression
表示关系端成员检索的一个新的 DbPropertyExpression。
使用说明
在 Visual Basic 和 C# 中,可以在 DbExpression 类型的任何对象上将此方法作为实例方法来调用。当使用实例方法语法调用此方法时,请省略第一个参数。有关详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/bb384936(v=vs.113)或https://msdn.microsoft.com/zh-cn/library/bb383977(v=vs.113)。
异常
例外 | 条件 |
---|---|
ArgumentNullException | relationshipEnd 为 null,或者 instance 为 null 并且属性不是静态的。 |
请参阅
参考
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 命名空间