Skip to content

Instantly share code, notes, and snippets.

@jiimaho
Last active November 14, 2021 10:28
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 jiimaho/6f018ca1e0a36274b4470cbcd66aee2c to your computer and use it in GitHub Desktop.
Save jiimaho/6f018ca1e0a36274b4470cbcd66aee2c to your computer and use it in GitHub Desktop.
SimpleDynamoDbQuery - query
var query = new QueryRequest
{
TableName = "customertestjim",
KeyConditionExpression = "CustomerId = :Id",
ExpressionAttributeValues = new Dictionary<string, AttributeValue>
{
{ ":Id", new AttributeValue { S = "12345" }}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment