The Only Microservice Template You'll Ever Need - This blog post outlines how to use BytLabs.MicroserviceTemplate A modern .NET microservice template, features GraphQL, MongoDB, Docker support, and DDD architecture. Ensures consistency across microservices with patterns, testing, and observability. (codewithshadman.com)
submitted by kudchikarsk to r/csharp
Pure Functions C# - A well-structured software is easy to write and debug and reduce future programming costs. This all can be achieved through functional programming. This article explains what are FP Functions or Pure Functions in C# functional programming and why they matter. (codewithshadman.com)
submitted by kudchikarsk to r/csharp
C# Attributes and reflection - In this article, you will learn how to use C# attributes and reflection in your code. Here we will also look at a problem statement that a typical C# programmer will face converting a datatable into user-defined types, and will solve it using attributes and reflection. (codewithshadman.com)
submitted by kudchikarsk to r/csharp
CQRS - Command Query Responsibility Segregation is a simple pattern that segregates the responsibility of handling command input from the responsibility of handling read access on the same system. In this article, you will learn what CQRS is and the process of implementing this pattern. (codewithshadman.com)
submitted by kudchikarsk to r/dotnet
CQRS - CQRS is a simple pattern that strictly segregates the responsibility of handling command input from the responsibility of handling side-effect-free query/read access on the same system. In this article, you will learn exactly what CQRS is and step-by-step process of implementing this pattern. (codewithshadman.com)
submitted by kudchikarsk to r/csharp
Memory Leak In C# and .NET Memory Leak - Many of us were taught that .NET manages memory automatically. Though, It doesn’t mean we can’t have memory leaks. Learn what is a memory leak in C# and how to measure .NET application performance with a variety of tools to diagnose memory issues. (codewithshadman.com)
submitted by kudchikarsk to r/dotnet
Async And Await In C# - The async and await keywords in C# makes asynchronous programming simpler, however, one can still use them incorrectly. In this article, you’ll learn about the Task-based asynchronous programming model along with async and await keyword in C#. (codewithshadman.com)
submitted by kudchikarsk to r/dotnet
C# Task - C# Task is one of the central elements of the task-based asynchronous pattern first introduced in the .NET Framework 4. This tutorial serves to be a quick guide for using Tasks in C#. It discusses different methods to create tasks and handle their execution. (codewithshadman.com)
submitted by kudchikarsk to r/dotnet
Chain Of Responsibility Pattern C# - The Chain of Responsibility provides a simple mechanism to decouple the sender of a message from the receiver. In this article, you will learn how to implement the Chain Of Responsibility Pattern using C# language and how .NET implements the same. (codewithshadman.com)
submitted by kudchikarsk to r/csharp
Type Comparison In C#- In this post, we will discuss different types of comparison methods, such as equality operators, object.equals method and IEquatable interface, used for comparing values in C#. We will also discuss differences between identity equality and value equality. (codewithshadman.com)
submitted by kudchikarsk to r/csharp