-
It appeared the only breaking change was net 2.1 support. However when I just upgraded some pipeline behaviors stopped working with the following error
> The type 'TRequest' cannot be used as type …
-
With v10, this code now no longer works. What needs to be adjusted?
```csharp
public class CachingBehavior : IPipelineBehavior where TRequest : ICacheableMediatrQuery
```
Where ICacheable…
-
In ASP.NET Core today, we have a couple of different ways to build web UI:
1. **MVC & Razor Pages**: These frameworks use server-side rendering (SSR) to dynamically generate HTML from the server i…
-
Followed the instructions on: https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#powershell_es
I only set the bundle_path, installed powershell from: https://aur.archli…
-
Now that we have C# 8.0, it would be nice if we had an interface such as `IStreamRequestHandler` with method
```
public async IAsyncEnumerable Handle(TRequest, CancellationToken)
{
}
```
Instea…
-
After doing an upgrade to [EFCore v7_Preview5](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/7.0.0-preview.5.22302.2) - most of our entities are not getting materialized and throwing ex…
-
Hello,
My problem is that I share contracts in both .net 6 and .net 4.8 applications, and I am stuck at v9 because v10 doesn't work with .net 4.8.
This will allow me to upgrade MediatR to v10 and …
-
Currently one controls the order in which behaviors are executed in a pipeline by explicitly adding them to dependency injection in a particular order. That's fine for small systems (or larger ones wi…
-
Are there any examples to show how to make a generic IRequestHandler?
I can obviously add lots of interfaces such as
```
public class MainWindowViewModel : BindableBase
,IRequestHandler
,IReq…
-
Not a issue, just a question please:
Is there a way to register Handlers manually?
That is, on start up - based on configuration register the required Handlers.
This will allow to have multiple …