Overwrites the original entity with the values stored in this Delta.
Remarks
The semantics of this operation are equivalent to a HTTP PUT operation, hence the name.
Namespace:   System.Web.OData
Assembly:  System.Web.OData (in System.Web.OData.dll)
Syntax
public void Put(
    TEntityType original
)
public:
void Put(
    TEntityType original
)
member Put : 
        original:'TEntityType -> unit
Public Sub Put (
    original As TEntityType
)
Parameters
- original 
 Type: TEntityType- The entity to be updated. 
See Also
Delta<TEntityType> Class
System.Web.OData Namespace
Return to top