DataServiceContext.AttachTo Method (String, Object, String)
Notifies the DataServiceContext to start tracking the specified resource and supplies the location of the resource in the specified resource set.
Namespace: System.Data.Services.Client
Assembly: System.Data.Services.Client (in System.Data.Services.Client.dll)
Parameters
- entitySetName
- Type: System.String
The string value that contains the name of the entity set to which to the entity is attached.
- entity
- Type: System.Object
The entity to add.
- etag
- Type: System.String
An etag value that represents the state of the entity the last time it was retrieved from the data service. This value is treated as an opaque string; no validation is performed on it by the client library.
| Exception | Condition |
|---|---|
| ArgumentNullException | When entitySetName is null. -or- When entity is null. |
| ArgumentException | When entitySetName is an empty string. -or- When the supplied object does not have a key property. |
| InvalidOperationException | When the supplied object is already being tracked by the context |
Calling this method notifies the DataServiceContext to start tracking the specified entity and identifies the entity set to which the entity belongs.
If the entity is part of an object graph, this operation does not traverse the graph to add related objects. The object is added to the DataServiceContext in the unchanged state. The method does not validate whether the entity set specified occurs in the data service associated with the DataServiceContext.
If the overload with an etag is used, the specified etag is associated with the newly attached entity. The etag is then sent to the data service, with all subsequent update or query operations for the entity, according to HTTP semantics. Manual generation of etag values is not recommended, but this overload is provided to enable entities that may have been serialized and stored to be reattached together with relevant concurrency metadata.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.