ObjectContext.Attach 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
在对象具有实体键时将对象或对象图附加到对象上下文。
命名空间: System.Data.Entity.Core.Objects
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Overridable Sub Attach ( _
entity As IEntityWithKey _
)
用法
Dim instance As ObjectContext
Dim entity As IEntityWithKey
instance.Attach(entity)
public virtual void Attach(
IEntityWithKey entity
)
public:
virtual void Attach(
IEntityWithKey^ entity
)
abstract Attach :
entity:IEntityWithKey -> unit
override Attach :
entity:IEntityWithKey -> unit
public function Attach(
entity : IEntityWithKey
)
参数
- entity
类型:System.Data.Entity.Core.Objects.DataClasses.IEntityWithKey
要附加的对象。
异常
例外 | 条件 |
---|---|
ArgumentNullException | entity 为 null。 |
InvalidOperationException | 无效的实体键。 |