Join 73,000+ subscribers accelerating their skills every week
One practical tip every Saturday
.NET best practices and actionable advice
Software Architecture deep dives and fresh ideas
Join thousands of software engineers
Previous issues of The .NET Weekly
The Test Pyramid Is a Lie (and What I Do Instead)
April 25, 2026
The test pyramid made sense when integration tests meant a shared database server and a 20-minute build. It doesn't match how I build .NET systems in ...
Why I Switched to Primary Constructors for DI in C#
April 18, 2026
I resisted primary constructors for a while. They felt like a shortcut that would cost me later. But after using them across several projects, I'm sol...
Implementing the Saga Pattern With Wolverine
April 11, 2026
Long-running business processes don't fit neatly into a single request. Wolverine's Saga support gives you a convention-based approach to orchestratin...
Implementing the Inbox Pattern for Reliable Message Consumption
April 04, 2026
The Outbox pattern guarantees reliable publishing. But what about the consumer side? The Inbox pattern ensures each incoming message is processed exac...
Getting Started With PgVector in .NET for Simple Vector Search
March 28, 2026
Vector search doesn't require a dedicated vector database. PostgreSQL with pgvector gives you similarity search right next to your relational data. He...
Scaling SignalR With a Redis Backplane
March 21, 2026
SignalR connections are server-local. Scale out to multiple instances and messages stop reaching the right clients. Here's how the Redis backplane fix...
Optimizing Bulk Database Updates in .NET: From Naive to Lightning-Fast
March 14, 2026
Seven approaches to bulk-updating rows in PostgreSQL from .NET using Dapper and EF Core, from naive per-row updates to binary COPY. Each step cuts dow...
5 Architecture Tests You Should Add to Your .NET Projects
March 07, 2026
Learn about five essential architecture tests that can help ensure the quality and maintainability of your .NET projects.
How to Implement Two-Factor Authentication in ASP.NET Core
February 28, 2026
Passwords alone are not enough. Learn how to implement Two-Factor Authentication in .NET using TOTP, QR codes, and the Otp.NET library, with a secure ...
Where Vertical Slices Fit Inside the Modular Monolith Architecture
February 21, 2026
Modular Monolith tells you how to split the system into modules. But it says nothing about how to organize code inside each module. Vertical Slice Arc...
Subscribe to the Newsletter
Join 73,000+ readers of The .NET Weekly for practical tips and resources to improve your .NET and software architecture skills.