How to implement API Versioning in ASP.NET CoreDecember 25, 2023Articles, ASP.NET CoreIn this article, let's look at how to setup API Versioning and the strategies employed in general and a few issues we encounter on our way.
Private and Static Constructors in C# SimplifiedDecember 25, 2023Articles, C# ConceptsIn this article, we discuss in detail about the concepts of Private and Static constructors in C# programming language and how they are useful.
How to build a simple ETag in ASP.NET CoreSeptember 10, 2023Articles, ASP.NET CoreIn this comprehensive guide, we will discuss the implementation of a straightforward ETag for caching unaltered resources within an ASP.NET Core Web API (using .NET 6).
How to work with Amazon S3 using ASP.NET CoreAugust 29, 2023Articles, AWSIn this article, let us look at how we can write to and read from Amazon S3 Storage using ASP.NET Core and AWS SDK for .NET
Easy Differences between string and stringbuilder in c#August 15, 2023Articles, C# ConceptsIn this brief comparison, let us understand what is the difference between a string and stringbuilder with an illustrating example
Easy differences between ref and out keywords in c#August 15, 2023Articles, C# ConceptsIn this brief comparison, let us discuss what is a ref and out keyword and the key differences between them with an example in C#
Easy Differences between const and readonly in C#August 15, 2023Articles, C# ConceptsIn this brief comparison, let us understand what are const and readonly keywords in C# and major differences between them with an example.
How to connect to DynamoDB using Express.js APIAugust 14, 2023Articles, AWSIn this article, let's look at how we can connect and work with AWS DynamoDB in Express.js REST API with a simple and illustrating Example
Understanding Prototype Design Pattern made EasyAugust 14, 2023Articles, Design PatternsIn this detailed article, let us understand how to clone an object and how Prototype design pattern helps us in cloning objects with example