NServiceBus icon indicating copy to clipboard operation
NServiceBus copied to clipboard

Added usefull guidance to RegisterComponents obsoletes

Open ramonsmits opened this issue 3 years ago • 0 comments

Added

Ensure to explicitly register all interfaces of a given type.

That hopefully prevents users from converting:

configuration.RegisterComponents(c => c.ConfigureComponent<StatisticsUoW>(DependencyLifecycle.SingleInstance));

into:

configuration.RegisterComponents(c => c.AddSingleton<IManageUnitsOfWork, StatisticsUoW>());

and not into:

configuration.RegisterComponents(c => c.AddSingleton<StatisticsUoW>());

ramonsmits avatar Sep 18 '22 15:09 ramonsmits