In my very first post, I showed how to use DynamoDB in .NET to receive single result (post). Looking into the evolution of API and layers of abstraction, we have much more options to query AWS DynamoDB. Therefore we have 3 ways to query and read results which I will demonstrate in this post. The …
Tag: DynamoDB
AWS DynamoDB – get the latest item
One of the latest issue which I met with AWS was getting the latest item (record) from DynamoDB. In my case data are base on the the hash key and range key. The range key is date (and in my case it is guarantee that I will often get the data). To avoid too many …