Recent posts

Explore the recent blog posts

Mastering Exception Handling in C#: A Comprehensive Guide
csharp

Mastering Exception Handling in C#: A Comprehensive Guide

Exception handling allows to gracefully manage errors, ensuring applications remain stable and user-friendly under unforeseen circumstances. This guide provides a comprehensive look at exception handling in C#, covering everything from basic try/catch blocks to throwing custom exceptions.

Exploring Data Mapping Options in EF CORE
ef-core

Exploring Data Mapping Options in EF CORE

EF Core allows to customize a model mapping using fluent API, data annotations, seperate configuration classes and attributes. Learn more about all these options in this blog post full with code examples

Complete Guide To Transaction Isolation Levels in SQL
databases

Complete Guide To Transaction Isolation Levels in SQL

Understanding transaction isolation levels in SQL is crucial for maintaining data integrity and performance in databases. This blog post explores the various isolation levels, their impact on data consistency and system performance, and how to implement them with code examples.

How To Create Custom Middlewares in ASP.NET Core
asp-net-core

How To Create Custom Middlewares in ASP.NET Core

ASP.NET Core's middleware architecture offers a powerful way to build and configure the HTTP request pipeline in your applications. This guide provides a step-by-step approach, complete with code examples, to get you up and running with your own middlewares.

Global Query Filters in EF Core
ef-core

Global Query Filters in EF Core

Explore the concept of global query filters in EF Core and how they can be effectively used to manage data access patterns, especially in multi-tenant applications or scenarios requiring soft delete functionality.

C# Init Only and Required Properties
csharp

C# Init Only and Required Properties

C# 9.0 introduced init only properties. The init only property can be assigned only during object creation and can't be changed further. This enforces immutability. Required properties were introduced in C# 11 which is a great addition to init only properties. Required ensures that init only properties are assigned during objection creation, as these properties can't be change further

Getting Started with Middlewares in ASP.NET Core
asp-net-core

Getting Started with Middlewares in ASP.NET Core

ASP.NET Core's middleware architecture offers a powerful way to build and configure the HTTP request pipeline in your applications. Understanding how to effectively use middleware is crucial for any ASP.NET Core developer. In this post, we'll explore what middleware is, the correct order of middlewares, and discuss some of the most widely used middlewares.

Improve Your .NET and Architecture Skills

Join my community of 1200+ developers and architects.

Each week you will get 2 practical tips with best practises and architecture advice.