DepencyInjectionExtension
1.0.0
.NET依賴注入標準的輕量級庫
nuget:https://www.nuget.org/packages/depperencyindoction.extensions/
例子:
[ TransientDependency ( typeof ( IService ) ) ]
public class Service : IService
{
public Service ( )
{
}
}格式: [<AttribuleLyfeCycle>(typeof(<InterfaceType>))]
InjectAllServices擴展方法作為顯示代碼片段Bellow: public void ConfigureServices ( IServiceCollection services )
{
services . AddMvc ( ) . SetCompatibilityVersion ( CompatibilityVersion . Version_2_2 ) ;
services . InjectAllServices ( ) ;
}