Fat Controller CQRS Diet: Command Pipeline
This post is in my Fat Controller CQRS Diet series demonstrating how to thin your controllers by implementing commands and queries using the MediatR library. For demonstration, I’m converting the MusicStore application that’s using ASP.NET Core MVC. All the source code is available on GitHub. If you’re new to this series, here are earlier posts in this series: Overview of Series Simple Query Simple Command Pipelines In both the new Query and Commands handlers wrote in prior posts, there was one thing standing out that really didn’t belong. Logging For reference, here was our AddToCartHandler that did some logging at… Read More »Fat Controller CQRS Diet: Command Pipeline