AI – Create a server MCP with .NET

By | 04/02/2026

In this post, we will see what a server MCP is, when and why we should use it and how to create a server with .NET.But first of all, what is MCP?“The Model Context Protocol is an open protocol developed by Anthropic that standardizes how applications provide context to Large Language Models (LLMs). Think of… Read More »

Category: AI

AI – Claude Code and Sub Agents

By | 21/01/2026

In this post, we will see what Claude Code is, how to install it and how to create a web application using Claude Code with Sub Agents.But first of all, what is Claude Code?“Claude Code is Anthropic’s command-line tool that enables developers to delegate entire coding tasks to Claude directly from the terminal. Built on… Read More »

Category: AI

Minimal APIs – Validation in .NET 10

By | 07/01/2026

In this post, we’ll explore the new validation feature introduced in .NET 10 a native, first‑class validation filter built directly into Minimal APIs.Before .NET 10, Minimal APIs encouraged a style where validation logic often lived inline inside handlers. While that approach works for small demos, it breaks down quickly in real applications. As endpoints grow,… Read More »

C# – SignalR

By | 10/12/2025

In this post, we will see what SignalR is and how we can use it in our .net projects.SignalR is a library for .NET developers that simplifies adding real-time web functionality to our applications.In short, it enables server-push. Instead of the client always having to initiate a request, SignalR opens a persistent, two-way connection. This… Read More »

Category: C#

C# – Refit client

By | 26/11/2025

In this post, we will see what Refit is and how we can use it in our .net projects.But first of all, what is Refit?“Refit is a REST library for .NET that turns our REST API into a live interface. Created by Paul Betts, Refit uses C# interfaces decorated with attributes to define HTTP API… Read More »

Category: C#

C# – Transient vs. Scoped vs. Singleton

By | 12/11/2025

In this post, we’ll see the three main service lifetimes in .NET: Transient, Scoped, and Singleton. We’ll also touch on the concept of Dependency Injection (DI) and provide C# code examples to illustrate how each lifetime works. WHAT IS DEPENDENCY INJECTION?Dependency Injection is a design pattern that allows us to remove hard-coded dependencies and make… Read More »

Category: C#

AI – Installing n8n locally with Docker

By | 29/10/2025

In this post, we will see what n8n is and how to install it locally with Docker.But first of all, what is n8n?“n8n (pronounced ‘n-eight-n’) is a free and open-source workflow automation tool designed for technical users who want to build complex automations without the limitations of traditional no-code platforms. Built with a node-based approach,… Read More »

Category: AI

Azure – Durable Functions

By | 15/10/2025

In this post, we will see what a durable functions is and how we can implement it.First of all, what is a Durable Functions?An Azure Durable Functions is essentially an extension of Azure Functions that allows us to write stateful workflows in a serverless environment. Instead of manually managing state or relying on external storage,… Read More »