IDomainManager<TData>::UpdateAsync Method (String^, Delta<TData>^)

 

Updates an existing item by applying a Delta<TEntityType> patch to it. The Delta<TEntityType> abstraction keeps track of which properties have changed which avoids problems with default values and the like.

Namespace:   Microsoft.WindowsAzure.Mobile.Service.Tables
Assembly:  Microsoft.WindowsAzure.Mobile.Service.Tables (in Microsoft.WindowsAzure.Mobile.Service.Tables.dll)

Task<TData>^ UpdateAsync(
	String^ id,
	Delta<TData>^ patch
)

Parameters

id
Type: System::String^

The id of the item to patch.

patch
Type: System.Web.Http.OData::Delta<TData>^

The patch to apply.

Return Value

Type: System.Threading.Tasks::Task<TData>^

The patched item.

Return to top
Show: