EntityReference<TEntity>.Attach(TEntity) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a many-to-one or one-to-one relationship between two objects in the object context.
public:
void Attach(TEntity entity);
public void Attach (TEntity entity);
override this.Attach : 'Entity -> unit
Public Sub Attach (entity As TEntity)
Parameters
- entity
- TEntity
The object being attached.
Exceptions
When the entity
is null
.
When the entity
cannot be related to the current related end. This can occur when the association in the conceptual schema does not support a relationship between the two types.
Remarks
The Attach method is used to define a relationship between an object and a related object when both objects are already attached to an object context. Set the related object to the Value property if the related object is not already attached to the object context. When both objects are detached, you can also define the relationship by setting the related object to the Value property and then attaching the root object in the object graph. For more information, see Attaching and Detaching Objects.
The object associated with this EntityReference<TEntity> and all objects being attached to it must be in an Unchanged or Modified state.
An object in the Deleted state can only be attached when the ObjectStateManager is already tracking the relationship instance.