Join 75,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
How to Build a High-Performance Cache Without External Libraries
December 27, 2025
Learn how to build a high-performance cache from scratch in .NET, moving from a simple ConcurrentDictionary to an optimized keyed-locking system. This...
Server-Sent Events in ASP.NET Core and .NET 10
December 20, 2025
ASP.NET Core 10 introduces native Server-Sent Events as a lightweight, HTTP-native alternative to SignalR for simple one-way real-time updates like da...
The New .slnx Solution Format (migration guide)
December 13, 2025
See what changes in .slnx, how to convert your existing .sln, and what to watch out for in CI.
DbContext is Not Thread-Safe: Parallelizing EF Core Queries the Right Way
December 06, 2025
Learn how to safely parallelize EF Core queries to improve performance by using IDbContextFactory to create isolated contexts, avoiding the thread-saf...
Vertical Slice Architecture: Where Does the Shared Logic Live?
November 29, 2025
Deciding where shared logic lives is the most critical moment in Vertical Slice Architecture adoption, as choosing incorrectly reintroduces the coupli...
The False Comfort of the "Happy Path": Decoupling Your Services
November 22, 2025
Coupling isn't just about code structure; it's about failure boundaries. Discover how to ensure your critical business logic survives when external de...
Exploring C# File-based Apps in .NET 10
November 15, 2025
With .NET 10, Microsoft introduced file-based apps, which give you the ability to write C# code in a single .cs file and run it directly, without any ...
The Idempotent Consumer Pattern in .NET (And Why You Need It)
November 08, 2025
Distributed systems don't fail cleanly: they retry, duplicate, and occasionally fail. This article shows how to design resilient message handlers in ....
What's New in EF Core 10: LeftJoin and RightJoin Operators in LINQ
November 01, 2025
.NET 10 finally adds proper LeftJoin and RightJoin methods to LINQ, replacing the complex GroupJoin + DefaultIfEmpty pattern with clean, readable code...
Subscribe to the Newsletter
Join 75,000+ readers of The .NET Weekly for practical tips and resources to improve your .NET and software architecture skills.