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