DepencyInjectionExtension
1.0.0
依存関係注射のための.NET標準の軽量ライブラリ
nuget:https://www.nuget.org/packages/dependencyinjection.extensions/
例:
[ TransientDependency ( typeof ( IService ) ) ]
public class Service : IService
{
public Service ( )
{
}
}形式: [<AttribuleLyfeCycle>(typeof(<InterfaceType>))]
InjectAllServices拡張法を呼び出します。 public void ConfigureServices ( IServiceCollection services )
{
services . AddMvc ( ) . SetCompatibilityVersion ( CompatibilityVersion . Version_2_2 ) ;
services . InjectAllServices ( ) ;
}