Table of Contents

Interface IDataModelDelete

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

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

public interface IDataModelDelete

Methods

Delete()

Deletes a Domain Model object into the remote data source

void Delete()

DeleteAsync()

Deletes a Domain Model object into the remote data source

Task DeleteAsync()

Returns

Task

DeleteBatch()

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

void DeleteBatch()

DeleteBatch(Batch)

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

void DeleteBatch(Batch batch)

Parameters

batch Batch

Batch add this request to

DeleteBatchAsync()

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

Task DeleteBatchAsync()

Returns

Task

DeleteBatchAsync(Batch)

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

Task DeleteBatchAsync(Batch batch)

Parameters

batch Batch

Batch add this request to

Returns

Task