Mediator is one of the 23 design patterns stated inside the GOF Design Patterns book. All it does is encapsulates communication between objects, hence no coupling. It falls into the object behavior patterns category. MassTransit has a mediator implementation. Let's talk about it.
Fiyaz Hasan
A collection of 34 posts
Cache Headers for Static Files & File Action Results
There are only two hard things in Computer Science: cache invalidation and naming things. -- Phil Karlton Learn how to add cache headers for static files and file action results.
Blazor Flash Cards - State Management with Fluxor
I'm a massive fan of the Redux pattern. One thing, though, it adds extra boilerplate code and may look overwhelming at first. But you get used to it and start to appreciate the power of it once your application grows to be a giant where state management becomes a nightmare.
Blazor Flash Cards - Hot Reload & MudBlazor
Bootstrap is all good and graceful, but let's go for different cuisine. MudBlazor is an open-source library that you want to look at if you are into Material Design. The community is welcoming, and they are pushing new updates every once in a while.
Input & Output Formatters For .NET
What formatters do is format your response and request in your preferred data formats. For example, JSON formatters; if used, would format your request and response body in JSON. Learn how to build a custom Yaml formatted in .NET
Custom "dotnet new" Templates for Your Team
There are a bunch of "dotnet" templates readily available for use. That's all fine and dandy! But what about creating your templates? Learn how easy it is to ship your runnable projects as templates for your team.
GraphQL with .NET Core (Part - XII: Relay)
To make a Relay compliant GraphQL server, you have to follow some specifications. Fortunately, GraphQL-Dotnet community has provided a library to take on the heavy burden.
Angular Pipe for Handling Boolean Types
Angular pipes are great for data transformation. json, async, datetime are some of the largely used built-in pipes. Learn how to make a custom one for your need.