Skip to content

Instantly share code, notes, and snippets.

@jvasallo
Created November 9, 2019 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jvasallo/402ca3a9da07315affa00f0bb25104b2 to your computer and use it in GitHub Desktop.
Save jvasallo/402ca3a9da07315affa00f0bb25104b2 to your computer and use it in GitHub Desktop.
DynamoDB Query Example
var search = _context.FromQueryAsync<SomeDto>(new QueryOperationConfig
{
Filter = new QueryFilter("partitionKeyAttribute", QueryOperator.Equal, titleId)
});
var searchResponse = await search.GetRemainingAsync();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment