We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I've implemented CQRS by following your repo. However I noticed that the decorator registration is now working with Autofac 6.x
builder.RegisterGenericDecorator( typeof(UnitOfWorkCommandHandlerWithResultDecorator<,>), typeof(ICommandHandler<,>));
I found different links on github with same issue but none of them really helps autofac/Autofac#1098 kgrzybek/modular-monolith-with-ddd#68
Can you explain how can we solve this issue with latest version of Autofac?
The text was updated successfully, but these errors were encountered:
I've created a sample app to demonstrate Requests processing in the latest Autofac & MediatR versions: github.com/LeftTwixWand/ModernCQRS
The sample output:
Sorry, something went wrong.
No branches or pull requests
Hi,
I've implemented CQRS by following your repo. However I noticed that the decorator registration is now working with Autofac 6.x
builder.RegisterGenericDecorator(
typeof(UnitOfWorkCommandHandlerWithResultDecorator<,>),
typeof(ICommandHandler<,>));
I found different links on github with same issue but none of them really helps
autofac/Autofac#1098
kgrzybek/modular-monolith-with-ddd#68
Can you explain how can we solve this issue with latest version of Autofac?
The text was updated successfully, but these errors were encountered: