EntitySet<TEntity>.Detach Method (TEntity)
[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]
Detaches the Entity from this entity set.
Namespace: System.ServiceModel.DomainServices.Client
Assembly: System.ServiceModel.DomainServices.Client (in System.ServiceModel.DomainServices.Client.dll)
Syntax
'Declaration
Public Sub Detach ( _
entity As TEntity _
)
'Usage
Dim instance As EntitySet
Dim entity As TEntity
instance.Detach(entity)
public void Detach(
TEntity entity
)
public:
void Detach(
TEntity entity
)
member Detach :
entity:'TEntity -> unit
public function Detach(
entity : TEntity
)
Parameters
- entity
Type: TEntity
The entity to detach.
Exceptions
Exception | Condition |
---|---|
[InvalidOperationException] | The entity is not in this entity set. |
Remarks
If the entity is the root of a compositional hierarchy, all child entities will also be detached.