# DynamoDBStorage.DeleteEntriesAsync(string, IReadOnlyCollection&lt;Dictionary&lt;string, AttributeValue&gt;&gt;)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.transactions.dynamodb/orleans.transactions.dynamodb.dynamodbstorage/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.transactions.dynamodb/orleans.transactions.dynamodb.dynamodbstorage/methods/)

[Source](https://github.com/dotnet/orleans/blob/b7a9e3e1c9c54b3cec3a467c5734bf7744541bcf/src/AWS/Shared/Storage/DynamoDBStorage.cs#L646-L674)

```csharp
public Task DeleteEntriesAsync(string tableName, IReadOnlyCollection<Dictionary<string, AttributeValue>> toDelete)
```

Delete multiple entries from a DynamoDB table (Batch delete)

### Parameters

- `tableName` (`string`): The name of the table to delete entries
- `toDelete` (`IReadOnlyCollection<Dictionary<string, AttributeValue>>`): List of key values for each entry that must be deleted in the batch
