AWS SNS

Hello everyone and welcome to .Net Cour Central. In this blog, I am going to walk through another AWS serverless feature which is called AWS SNS. AWS SNS or Simple Notification Service is another fully managed serverless messaging service provided by AWS. We can use SNS both for application to application as well as application … Read more

AWS SQS

Hello everyone and welcome to .Net Core Central. In this blog, I am going to walk through the AWS serverless feature and that is AWS SQS (Simple Queue Service). In this blog post, I am going to Firstly, I will explain what is SQS and its advantage. Secondly, I am going to go share how … Read more

SOLID Design Principles

In today’s blog, I am going to discuss SOLID Design Principles. Most of the blogs and videos that I did in the past uses one or other SOLID Design Principles. But I never talked in detail about all the design principles which are part of the SOLID Design Principles. Hence, it would be a nice … Read more

Delegates and Events

Delegates and Events are two of the very important fundamental concepts in the .NET Framework. These two concepts we end up using every day in a shape or form inside of our code. Not so much of Events, but Delegates for sure. In this blog post, I am going to walk through some of the … Read more

Service Lifetime in Dependency Injection

In this blog post, I am going to discuss the Dependency Injection Service Lifetime. In the out-of-box Dependency Injection container in .NET Core or .NET 5.0, there are three main service lifetime options available. The main focus of this blog post will be discussing the details of each of the three service lifetime that comes … Read more