# DynamoDBStorage.GetEntriesTxAsync(string, IEnumerable&lt;Dictionary&lt;string, AttributeValue&gt;&gt;, Func&lt;Dictionary&lt;string, AttributeValue&gt;, TResult&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#L920-L941)

```csharp
public Task<IEnumerable<TResult>> GetEntriesTxAsync<TResult>(string tableName, IEnumerable<Dictionary<string, AttributeValue>> keys, Func<Dictionary<string, AttributeValue>, TResult> resolver)
```

Transactionally reads entries from a DynamoDB table

### Parameters

- `tableName` (`string`): The name of the table to search for the entry
- `keys` (`IEnumerable<Dictionary<string, AttributeValue>>`): The table entry keys to search for
- `resolver` (`Func<Dictionary<string, AttributeValue>, TResult>`): Function that will be called to translate the returned fields into a concrete type. This Function is only called if the result is != null

### Returns

The object translated by the resolver function
