Jhonatan Oliveirablog.jhonatanoliveira.dev·Jan 15, 2023Applying CQRS and Mediator in Asp.Net CoreThis blog post will discuss CQRS and Mediator patterns and apply them in an Asp.Net Core application. What is CQS? CQS is a design pattern, and the acronym stands for Command Query Separation. It states that every method should either be a command th...1.3K reads#CQRS
reza ghasemirezaghasemi.me·Dec 30, 2022Implementing a Library Like MediatR-Notification in .NET CoreIn this article, we will look at how to create a notification library in .NET Core inspired by the popular MediatR library. We will start by defining the core interfaces that make up the notification system, and then we will build a mediator class th...5 likes·1.1K readsMediatR
Joshua Stewardconcurrentflows.com·Nov 15, 2022AsyncMediator Series - Part 2Welcome Back! 👋 So glad you made it back for Part 2, in Part 1: Broadcast Messaging - In Memory we created the implementation of something called Flow. Which is simply the broadcast of messages across many Consumers from many Originators leveraging ...2 likes·147 readsAsyncMediator - Ultimate DecouplingC#
Joshua Stewardconcurrentflows.com·Oct 22, 2022AsyncMediator Series - Part 1Inspiration Origination executes distinctly from Consumption From the beginning 🤔 The idea of a Mediator is generally the go to when we want to decouple a Request from its Processing. There's already some well established and widely used mediator ...293 readsAsyncMediator - Ultimate Decouplingmediator