Table of Contents

Interface IDataModelUpdate

Namespace
PnP.Core.Model
Assembly
PnP.Core.dll

Defines the update interface for Domain Model objects that need update.

public interface IDataModelUpdate

Methods

Update()

Updates a Domain Model object into the remote data source

void Update()

UpdateAsync()

Updates a Domain Model object into the remote data source

Task UpdateAsync()

Returns

Task

UpdateBatch()

Collects the request to update a Domain Model object into the remote data source

void UpdateBatch()

UpdateBatch(Batch)

Collects the request to update a Domain Model object into the remote data source using a batch

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

Task UpdateBatchAsync()

Returns

Task

UpdateBatchAsync(Batch)

Collects the request to update a Domain Model object into the remote data source using a batch

Task UpdateBatchAsync(Batch batch)

Parameters

batch Batch

Batch add this request to

Returns

Task