Interface IDataModelCollectionDeleteByIntegerId
When implemented it provides a DeleteById method on the collection
public interface IDataModelCollectionDeleteByIntegerId
Methods
DeleteById(int)
Delete an item from the collection via it's id
void DeleteById(int id)
Parameters
idintId of the item to delete
DeleteByIdAsync(int)
Delete an item from the collection via it's id
Task DeleteByIdAsync(int id)
Parameters
idintId of the item to delete
Returns
DeleteByIdBatch(Batch, int)
Delete an item from the collection via it's id
void DeleteByIdBatch(Batch batch, int id)
Parameters
DeleteByIdBatch(int)
Delete an item from the collection via it's id
void DeleteByIdBatch(int id)
Parameters
idintId of the item to delete
DeleteByIdBatchAsync(Batch, int)
Delete an item from the collection via it's id
Task DeleteByIdBatchAsync(Batch batch, int id)
Parameters
Returns
DeleteByIdBatchAsync(int)
Delete an item from the collection via it's id
Task DeleteByIdBatchAsync(int id)
Parameters
idintId of the item to delete