DynamoDB

How to Optimize Your DynamoDB Queries With Projection Expressions in .NET Paid Members Public
When reading data from a DynamoDB table, by default, it returns all of the attributes of the items. However, in some application scenarios, you might only require a subset of the attributes of the items. In these scenarios, you can use a ProjectionExpression to limit the item attributes returned as

Learn How to Map Complex .NET Types to DynamoDB using Custom Converters Paid Members Public
DynamoDB supports using custom types in your Documents. Based on your programming language, If there is no direct mapping for these types to Amazon DynamoDB types, you need to specify additional information on how to map them. Custom Converters allow specifying custom maps for these types in DynamoDB. In this

3 Different Ways To Do Data Pagination from Amazon DynamoDB Using .NET Paid Members Public
Learn how to use Dynamodb pagination to retrieve large amounts of data stored in the table.s.

5 Ways To Query Data From Amazon DynamoDB using .NET Paid Members Public
Querying is an essential operation in DynamoDB. It allows you to filter and select items in your database based on your application and user needs. When moving over to DynamoDB from more traditional relational databases like SQL Server, you must understand the different ways you can retrieve data in DynamoDB.

How to Handle Exceptions When Processing DynamoDB Stream Events in .NET Lambda Function Paid Members Public
This article is sponsored by AWS and is part of my AWS Series. DynamoDB Streams capture a time-ordered sequence of events in any DynamoDB table. In a previous blog post, DynamoDB Streams and AWS Lambda Trigger in .NET, we learned how to set up DynamoDB Stream on a DynamoDB table

DynamoDB Streams and AWS Lambda Trigger in .NET Paid Members Public
DynamoDB Streams capture a time-ordered sequence of events in any DynamoDB table. Let's learn how to enable DynamoDB Streams, different stream types and how to consumer stream changes from a .NET AWS Lambda Function.

How to Run and Access DynamoDB Local For Easy Development and Testing Paid Members Public
Learn how to set up and run DynamoDB database on your local development machine. We'll see how to connect using AWS CLI, from .NET application and using GUI tools like Dynobase and NoSQL Workbench.

AWS DynamoDB For The .NET Developer: How To Easily Get Started Paid Members Public
Learn how to get started with AWS DynamoDB with .NET Core by updating the default ASP NET Web API template to use DynamoDB as it's data store. We will learn to do basic Creat, Read, Update and Delete operations from the API.