ObjectSet<TEntity>.ApplyOriginalValues(TEntity) Method

Definition

Sets the OriginalValues property of an ObjectStateEntry to match the property values of a supplied object.

public:
 TEntity ApplyOriginalValues(TEntity originalEntity);
public TEntity ApplyOriginalValues (TEntity originalEntity);
member this.ApplyOriginalValues : 'Entity -> 'Entity
Public Function ApplyOriginalValues (originalEntity As TEntity) As TEntity

Parameters

originalEntity
TEntity

The detached object that has property updates to apply to the original object. The entity key of originalEntity must match the EntityKey property of an entry in the ObjectContext.

Returns

TEntity

The updated object.

Remarks

This method is a wrapper around the ApplyOriginalValues method.

Applies to

See also