AWS

C# Yield Return Statement: A Deep Dive Members Public

Iterator methods are methods that create a source for an enumeration. The yield method is used to define an iterator method. While you can implement the IEnumerable interface, iterators makes it much more easier with the yield statement. Let's learn more about this.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet

Exploring Amazon S3 Conditional Operations From .NET Application Members Public

Amazon S3 now supports conditional requests. You can use conditional requests to add preconditions to your S3 operations. If the precondition is not met it will result in the S3 operation failing. Let’s learn about Conditional Reads and Writes in Amazon S3 and how to use it from .NET

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

A Beginner's Guide to MassTransit and RabbitMQ in ASP NET Members Public

MassTransit is a powerful .NET library for building distributed systems. Let's learn how to set up MassTransit using RabbitMQ transport from an ASP NET application. We will also learn the default queue topology MassTransit sets up on RabbitMQ transport.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
RabbitMQ

Step By Step Guide: Deploying ASP NET API To AWS Elastic Beanstalk Using Visual Studio Toolkit Members Public

In this post let's explore step-by-step how to deploy an ASP NET Web API application to AWS Elastic Beanstalk. We will use the Visual Studio Toolkit to deploy the application and create multiple environments.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

AWS RDS and .NET: Step-by-Step Guide for SQL Server Setup Members Public

Amazon Relational Database Service (RDS) is a managed database service on AWS Cloud. RDS provides different database engines; in this post, we will focus on SQL Server. We will set up a Microsoft SQL Server database on RDS and connect to it from a .NET application.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
SQL

Beyond CRUD: Leveraging DynamoDB Transactions for Complex Operations in .NET Members Public

Amazon DynamoDB Transactions simplifies the developer experience of making all-or-nothing changes to multiple items within and across tables. In this post, let's learn about TransactWriteItems and how to use them when building .NET applications.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

Deploying a .NET Web API on Amazon ECS: A Step-by-Step Guide Members Public

Let's learn some of the core concepts of ECS, while deploying an ASP NET Web API application on Amazon ECS using Fargate. we will explore some key components of ECS, including task definitions, tasks, services clusters, etc.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
ECS

Deploying a .NET Web API on Amazon EC2: A Step-by-Step Guide Members Public

Let's learn how to leverage Amazon EC2 to host your .NET applications. In this post, we will learn how to create an EC2 instance, set it up with .NET runtime, upload your .NET application, and run it from there.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS