目前,我正在使用Startup中的AddScoped注入模块,如下所示。
services.AddScoped<IAccountRepository, AccountRepository>();
services.AddScoped<IFeedBackRepository, FeedBackRepository>();
我坚持迁移到统一容器以注入整个模块(命名空间)。
我尝试使用Using Unity instead of ASP.Net Core DI IServiceCollection和https://www.microsoft.com/en-in/download/confirmation.aspx?id=39944。但这不能满足我的要求