Dependency Injection in Modern .NET

If you’re a .NET developer in 2025, you already know that Dependency Injection (DI) is not an optional “nice-to-have” — it’s the default and recommended way of building maintainable, testable, and loosely-coupled applications. Microsoft made DI a first-class citizen starting with .NET Core, and with every new version (especially .NET 8 and .NET 9) the built-in container gets more powerful.

Read more Dependency Injection in Modern .NET

Message Queue in MS SQL

SQL Server Service Broker (SSB) is a powerful messaging framework built directly into Microsoft SQL Server. It enables reliable, asynchronous communication between different databases or within the same database, allowing applications to send, receive, and process messages without blocking transactions.

Read more Message Queue in MS SQL