Milan Jovanovićmilanjovanovic.hashnode.dev·Oct 21, 2023CQRS Pattern With MediatRToday I want to show you how to use the CQRS pattern to build fast and scalable applications. The CQRS pattern separates the writes and reads in the application. This separation can be logical or physical and has many benefits: Complexity management...Discuss#CQRS
Omar Wasfiblog.omarwasfi.com·Oct 10, 2023Mediator pattern: A guide to decoupling object communicationThe Mediator pattern is a behavioral design pattern that allows objects to communicate with each other without direct references. This promotes loose coupling and makes the system more flexible and maintainable. In the Mediator pattern, there is a ce...DiscussMediatoRdesign patterns
Danko Simunovicdsimunovic.hashnode.dev·Oct 1, 2023Mediator PatternMediator is a behavioral design pattern that reduces coupling between components of a program by making them communicate indirectly, through a special mediator object. This eliminates the need for these objects to communicate directly with each other...DiscussC#
Milan Jovanovićmilanjovanovic.hashnode.dev·Sep 30, 2023CQRS Validation with MediatR Pipeline and FluentValidationValidation is an essential cross-cutting concern that you need to solve in your application. You want to ensure the request is valid before you consider processing it. Another important question you need to answer is how you approach different types ...Discuss·85 readsasp.net core
Bug And Fixbugandfix.com·Aug 13, 2023Why do not you use IPipelineBehavior ?!https://youtu.be/z6ZKAoUL4QE GitHub : https://github.com/bugandfix/CQRS-PipelineBehaviourDiscuss·49 readsMediatR
Eduardedkorenkov.hashnode.dev·Jun 21, 2023Handling Exceptions in MediatR Request PipelineEssentially, .NET Framework or .NET Core is somehow able to handle exceptions for you. So If you are not considering handling exceptions in your .NET application you can completely skip this article. Please note that this blog post doesn't cover the ...Discuss·113 readsdotnet
Milan Jovanovićmilanjovanovic.hashnode.dev·Mar 25, 2023How To Publish MediatR Notifications In ParallelMediatR is a popular library with a simple mediator pattern implementation in .NET. Here's a definiton taken from MediatR's GitHub: "In-process messaging with no dependencies." With the rise in popularity of the CQRS pattern, MediatR became the go-to...DiscussC#
reza ghasemirezaghasemi.hashnode.dev·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...Discuss·5 likes·646 readsMediatR