RelatedEnd.IRelatedEnd.Attach 方法 (Object)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
將實體附加至相關端。 如果相關端已經填滿或部分填滿,這就會合併現有的實體與給定的實體。 給定的實體不會視為相關實體的完整集合。 擁有者和所有傳入的實體都必須處於 Unchanged 或 Modified 狀態。 只有在狀態管理員已在追蹤關聯性執行個體時,才允許刪除的項目。
命名空間: System.Data.Entity.Core.Objects.DataClasses
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")> _
Private Sub Attach ( _
entity As Object _
) Implements IRelatedEnd.Attach
'用途
Dim instance As RelatedEnd
Dim entity As Object
CType(instance, IRelatedEnd).Attach(entity)
[SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
void IRelatedEnd.Attach(
Object entity
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
private:
virtual void Attach(
Object^ entity
) sealed = IRelatedEnd::Attach
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private abstract Attach :
entity:Object -> unit
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private override Attach :
entity:Object -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
參數
- entity
類型:System.Object
要附加至相關端的實體
Implements
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | 當 entity 為 null 時擲回。 |
InvalidOperationException | 當實體無法透過目前的關聯性端相關聯時擲回。 |