DynamoDB

How to Optimize Your DynamoDB Queries With Projection Expressions in .NET 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

Learn How to Map Complex .NET Types to DynamoDB using Custom Converters 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

3 Different Ways To Do Data Pagination from Amazon DynamoDB Using .NET Members Public

Learn how to use Dynamodb pagination to retrieve large amounts of data stored in the table.s.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

5 Ways To Query Data From Amazon DynamoDB using .NET 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.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

How to Handle Exceptions When Processing DynamoDB Stream Events in .NET Lambda Function 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

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

DynamoDB Streams and AWS Lambda Trigger in .NET 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.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

How to Run and Access DynamoDB Local For Easy Development and Testing 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.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

AWS DynamoDB For The .NET Developer: How To Easily Get Started 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.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS