Abdullah Sajjadblog.abdullahsajjad.me·Aug 4, 2024MediatR Pipeline BehaviorsWhat are MediatR Pipeline Behaviors? Pipeline behaviors in MediatR are akin to middleware in ASP.NET Core. They allow you to define a series of steps that a request goes through before reaching its final handler. This can be useful for cross-cutting ...Discuss·189 readsMediatR
Eduardedkorenkov.hashnode.dev·Jul 30, 2024Streamlining MediatR Migration from Version 12.0 to 12.1A few months ago, I worked on the task of migrating project services from MediatR version 12.0 to 12.1. I will not explain in detail what this fairly popular library is used for, nor will I talk about its advantages and disadvantages. Here, I just wa...Discussdotnet
Milan Jovanovićmilanjovanovic.hashnode.dev·Jul 13, 2024Building Your First Use Case With Clean ArchitectureThis is a question I often hear: how do I design my use case with Clean Architecture? I understand the confusion. Figuring out what to place in the Domain, Application, and Infrastructure layer can seem complicated. If that's not enough, we also have...DiscussApplication Core
Pablo Rivas Sánchezpablorivas.eu·May 19, 2024Mastering Domain Events Made Simple with MediatR in C# and .NET 8Readers of this article will gain insights into mastering domain events with Meditr in C# and .NET 8. They'll learn how to effectively manage domain events, from creation to handling, using this powerful library. Through step-by-step guidance, they'l...Discuss·69 reads#entityframeworkcore
Ishrar Gblog.ishrar.in·Mar 29, 2024.NET 9: A Challenger Emerges for MediatR in Event Handling?MediatR, a popular mediator library for .NET applications, might face a new contender in the event handling arena - .NET 9. While .NET 9 isn't designed solely for event handling, its built-in capabilities and developer focus could pose a challenge to...Discuss·71 readsMediatR
Ervin Boy Jati Asmaraasmaraervin.hashnode.dev·Feb 19, 2024Clean Architecture in ASP.NET 8 Core Web API — CQRS — Mediator | Visual StudioPertama bukalah Visual Studio kemudian pilihlah “Create a new project” Pilih Create a new project Memilih template ASP .NET Core Web API Memberi nama dari template ini yaitu “CleanArchWithCQRSandMediator.API” Memilih versi dari .NET, s...Discussdotnet
M B A R Kmbarkt3sto.hashnode.dev·Dec 19, 2023MediatR: A Noob Guide to IPipelineBehaviorOne of the key features that sets MediatR apart is the use of pipeline behaviors, and in this blog post, we'll take a deep dive into IPipelineBehavior, a powerful tool for handling cross-cutting concerns. Understanding IPipelineBehavior IPipelineBeha...Discuss·1 like·1.0K reads.NET
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·106 reads#CQRS
Omar Wasfiomarwasfi.hashnode.dev·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...Discuss·27 readsMediatoRdesign 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#