Interface IDataModelUpdate
Defines the update interface for Domain Model objects that need update.
Namespace: PnP.Core.Model
Assembly: PnP.Core.dll
Syntax
public interface IDataModelUpdate
Methods
Update()
Updates a Domain Model object into the remote data source
Declaration
void Update()
UpdateAsync()
Updates a Domain Model object into the remote data source
Declaration
Task UpdateAsync()
Returns
Task
|
UpdateBatch()
Collects the request to update a Domain Model object into the remote data source
Declaration
void UpdateBatch()
UpdateBatch(Batch)
Collects the request to update a Domain Model object into the remote data source using a batch
Declaration
void UpdateBatch(Batch batch)
Parameters
Batch
batch
Batch add this request to |
UpdateBatchAsync()
Collects the request to update a Domain Model object into the remote data source
Declaration
Task UpdateBatchAsync()
Returns
Task
|
UpdateBatchAsync(Batch)
Collects the request to update a Domain Model object into the remote data source using a batch
Declaration
Task UpdateBatchAsync(Batch batch)
Parameters
Batch
batch
Batch add this request to |
Returns
Task
|