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