Posts tagged "Dotnet"

4 articles on AJ's Tech Notes tagged with Dotnet.

  1. Middleware in ASP.NET Core: A Comprehensive Guide

    Middleware is a core feature of ASP.NET Core that processes HTTP requests and responses in the request/response pipeline. It enables cross-cutting concerns like logging, authentication, error handling, and more. Learn how middleware works, its types, how to create custom middleware, and best practices for implementing it in your ASP.NET Core applications.

    By Ajith joseph · · #dotnet #csharp #api #security

  2. Dependency Injection in .NET Core: A Comprehensive Guide

    Dependency Injection (DI) is a key design pattern in .NET Core that promotes loose coupling, testability, and maintainability. This guide explains the concepts, types of service lifetimes, implementation, and best practices for using DI in .NET Core applications. Learn how to build modular and scalable applications with built-in Dependency Injection.

    By Ajith joseph · · #dotnet #csharp #api #security