Blog
Articles about .NET, software architecture, and developer life.

Action filters in ASP.NET - A quick guide
Following up on our article on how to design good [controllers in ASP.NET](https://dateo-software.de/blog/improve-your-asp-net-core-controllers), I'd like to introduce you to a different set of tools to help you clean up your architecture in ASP.NET Core projects. Let's visit action filters in ASP.NET.

Our site has moved!
I am happy to announce that the website and blog have moved to a different web hosting location and run on a different backend.

Learn how to improve your ASP.NET Core controllers with these principles
When it comes to API projects there is a lot you can do with your controllers. Consequently, there is also a lot that you can do wrong with them. So let’s have a look at some basic guidelines that might help you improve the design of your ASP.NET Core controllers.

Improve your pipeline maintainability with test categories in xUnit
Today let’s explore how you can improve the stability, maintainability, and readability of your CI and CD pipelines using custom test categories in xUnit.