Andrei Popescu
Results
1
comments of
Andrei Popescu
I've managed to do it like this (Autofac 6.2.0): ```csharp builder.RegisterGenericDecorator( typeof(UnitOfWorkCommandHandlerDecorator), typeof(IRequestHandler), context => context.ImplementationType.FullName.EndsWith("CommandHandler")); builder.RegisterGenericDecorator( typeof(UnitOfWorkCommandHandlerWithResultDecorator), typeof(IRequestHandler), context => context.ImplementationType.FullName.EndsWith("CommandHandler")); ```