Join 53,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
Enforcing Software Architecture With Architecture Tests
May 6, 2023
Software architecture is a blueprint for how you should structure your system. You can follow this blueprint strictly, or you can give yourself varyin...
Health Checks In ASP.NET Core For Monitoring Your Applications
April 29, 2023
We all want to build robust and reliable applications that can scale indefinitely and handle any number of requests. But with distributed systems and ...
Idempotent Consumer - Handling Duplicate Messages
April 22, 2023
What happens when a message is retried in an event-driven system? It happens more often than you think. The worst case scenario is that the message is...
How To Use Rate Limiting In ASP.NET Core
April 8, 2023
Rate limiting is a technique to limit the number of requests to a server or an API. A limit is introduced within a given time period to prevent server...
Implementing The Saga Pattern With Rebus And RabbitMQ
April 1, 2023
Designing long-lived processes in a distributed environment is an interesting engineering challenge. And a well known pattern for solving this problem...
How To Publish MediatR Notifications In Parallel
March 25, 2023
MediatR is a popular library with a simple mediator pattern implementation in .NET. Here's a definiton taken from MediatR's GitHub: "In-process messag...
Creating Data-Driven Tests With xUnit
March 18, 2023
Data-driven testing is a testing method where test data is provided through some external source. Hence it's also known as parameterized testing. A po...
Using Multiple EF Core DbContexts In a Single Application
March 11, 2023
Entity Framework Core (EF Core) is a popular ORM in .NET that allows you to work with SQL databases. EF Core uses a DbContext, which represents a sess...
How To Apply Functional Programming In C#
March 4, 2023
Although C# is an object-oriented programming language, it received many new functional features in recent versions. To mention just a few of these fe...
Subscribe to the Newsletter
Join 53,000+ readers of The .NET Weekly for practical tips and resources to improve your .NET and software architecture skills.