asp.net core 2.0 DI将多个IInterface类注入控制器

问题描述 投票:1回答:1

我要创建数百个类。如果他们都实现了同一个类,我是否必须逐个注册?

public class Service<TEntity>: IService<TEntity> {...}

public Interface IService<TEntity> where TEntity : class {...}

public class class1 : Service<apple>, IClass1 {...}

public class class234 : Service<orange>, IClass234 {...}

在我的控制器中,我想像这样注入它

public class FoodController : Controller{
     private IClass1 _class1;
     private IClass234 _class234;

     FoodController(IClass1 ic1, IClass234 ic234){
          _class1 = ic1;
          _class234 = ic234;
     }
}

我之前用Unity在旧版本的ASP.NET中做过这个我怎么能用ASP.NET CORE 2.0的内置DI做到这一点?

在控制器中,我可以在构造函数中注入IClass1IClass234的特定接口。这是我想要实现的,因为我还想使用类实现的其他接口中的其他方法。

public void ConfigureServices(IServiceCollection services)
{
    // Is there a way to register all 234 classes without typing out services.addTransient...
}
c# dependency-injection asp.net-core-2.0
1个回答
1
投票

使用标准DI容器,您必须逐个注册。

但您可以使用另一个库通过命名约定自动注册它:

https://www.google.com/amp/s/andrewlock.net/using-scrutor-to-automatically-register-your-services-with-the-asp-net-core-di-container/amp/

© www.soinside.com 2019 - 2024. All rights reserved.