How to create a request pipeline from scratch

Опубликовано: 29 Май 2023
на канале: Spyros Katsios
650
23

Hi there! In this video we implement our own request pipeline. We use a custom mediator that we implemented on previous videos, but there is no need to have watched them , as we revisit the crucial for the pipeline parts. The principles of creating a pipeline are not bounded to our mediator implementation, so they apply everywhere.

Source code: https://github.com/spyroskatsios/YouT...

Creating a mediator in C# from scratch (Part 1: Commands):    • Video  
Creating a mediator in C# from scratch (Part 2: Queries ):    • Video  

Chapters:
00:00 : Intro and solution overview
02:06 : The pipeline contract
04:07 : Adding pipeline behaviors
07:40 : Implementing the request pipeline
11:30 : Our pipeline in action
14:00 : What if we have a return type?

#csharp #pipeline