DbExpressionBuilder.RefFromKey 方法 (EntitySet, DbExpression, EntityType)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
创建一个新的 DbRefExpression,它对基于键值对特定实体的引用进行编码。
命名空间: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<ExtensionAttribute> _
Public Shared Function RefFromKey ( _
entitySet As EntitySet, _
keyRow As DbExpression, _
entityType As EntityType _
) As DbRefExpression
用法
Dim entitySet As EntitySet
Dim keyRow As DbExpression
Dim entityType As EntityType
Dim returnValue As DbRefExpression
returnValue = entitySet.RefFromKey(keyRow, _
entityType)
public static DbRefExpression RefFromKey(
this EntitySet entitySet,
DbExpression keyRow,
EntityType entityType
)
[ExtensionAttribute]
public:
static DbRefExpression^ RefFromKey(
EntitySet^ entitySet,
DbExpression^ keyRow,
EntityType^ entityType
)
static member RefFromKey :
entitySet:EntitySet *
keyRow:DbExpression *
entityType:EntityType -> DbRefExpression
public static function RefFromKey(
entitySet : EntitySet,
keyRow : DbExpression,
entityType : EntityType
) : DbRefExpression
参数
- entitySet
类型:System.Data.Entity.Core.Metadata.Edm.EntitySet
引用的元素所在的实体集。
- keyRow
类型:System.Data.Entity.Core.Common.CommandTrees.DbExpression
一个 DbExpression,它使用与引用的实体类型的 Key 属性在数目、类型和顺序上相匹配的列构造一个记录。
- entityType
类型:System.Data.Entity.Core.Metadata.Edm.EntityType
引用应针对的实体的类型。
返回值
类型:System.Data.Entity.Core.Common.CommandTrees.DbRefExpression
一个新的 DbRefExpression,它引用在给定实体集中具有指定键值的元素。
使用说明
在 Visual Basic 和 C# 中,可以在 EntitySet 类型的任何对象上将此方法作为实例方法来调用。当使用实例方法语法调用此方法时,请省略第一个参数。有关详细信息,请参阅https://msdn.microsoft.com/zh-cn/library/bb384936(v=vs.113)或https://msdn.microsoft.com/zh-cn/library/bb383977(v=vs.113)。
异常
例外 | 条件 |
---|---|
ArgumentNullException | entitySet、keyRow 或 entityType 为 null。 |
ArgumentException | entityType 与实体集的实体类型不处于相同的类型层次结构,或者 keyRow 不具有与引用的实体集的实体类型的键属性匹配的记录结果类型。 |
备注
keyRow 应为一个表达式,该表达式指定用于标识给定实体集中的引用实体的键值。 keyRow 的结果类型应包含由 entitySet's 的实体类型定义的各属性的相应列。
请参阅
参考
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder 命名空间