ObjectContext.LoadProperty<TEntity> 方法 (TEntity, Expression<Func<TEntity, Object>>, MergeOption)
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
通过指定的 LINQ 查询并使用指定的合并选项,显式加载与提供的对象相关的对象。
命名空间: System.Data.Entity.Core.Objects
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
Public Overridable Sub LoadProperty(Of TEntity) ( _
entity As TEntity, _
selector As Expression(Of Func(Of TEntity, Object)), _
mergeOption As MergeOption _
)
用法
Dim instance As ObjectContext
Dim entity As TEntity
Dim selector As Expression(Of Func(Of TEntity, Object))
Dim mergeOption As MergeOption
instance.LoadProperty(entity, selector, _
mergeOption)
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public virtual void LoadProperty<TEntity>(
TEntity entity,
Expression<Func<TEntity, Object>> selector,
MergeOption mergeOption
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
public:
generic<typename TEntity>
virtual void LoadProperty(
TEntity entity,
Expression<Func<TEntity, Object^>^>^ selector,
MergeOption mergeOption
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
abstract LoadProperty :
entity:'TEntity *
selector:Expression<Func<'TEntity, Object>> *
mergeOption:MergeOption -> unit
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
override LoadProperty :
entity:'TEntity *
selector:Expression<Func<'TEntity, Object>> *
mergeOption:MergeOption -> unit
JScript does not support generic types and methods.
类型参数
- TEntity
实体的类型。
参数
- entity
类型:TEntity
要为其加载相关对象的源对象。
- selector
类型:System.Linq.Expressions.Expression<Func<TEntity, Object>>
定义要加载的相关对象的 LINQ 表达式。
- mergeOption
类型:System.Data.Entity.Core.Objects.MergeOption
在加载相关对象时要使用的 MergeOption 值。
异常
例外 | 条件 |
---|---|
ArgumentException | selector 未提供有效的输入参数。 |
ArgumentNullException | selector 为 null。 |
InvalidOperationException | 实体处于 Detached、[F:System.Data.Entity.EntityState.Added,] 或 Deleted 状态,或实体已附加到 ObjectContext 的另一个实例。 |