使用依赖注入在控制器中注入一个 IEnumerable 接口
Inject an IEnumerable of interface in controller using Dependency Injection
我想解决继承 控制器 接口的多个 class 的 IEnumerable 集合的依赖关系。
我想在应用程序启动期间解决以下依赖关系:
var notificationStrategy = new NotificationStrategy(
new INotificationService[]
{
new TextNotificationService(), // <-- inject any dependencies here
new EmailNotificationService() // <-- inject any dependencies here
});
NotificationStragey
public class NotificationStrategy : INotificatonStrategy
{
private readonly IEnumerable<INotificationService> notificationServices;
public NotificationStrategy(IEnumerable<INotificationService> notificationServices)
{
this.notificationServices = notificationServices ?? throw new ArgumentNullException(nameof(notificationServices));
}
}
在不使用任何外部依赖项或库的情况下,在 asp.net 核心中对 IEnumerable 类型的对象进行依赖项注入的最佳方法是什么?
在复合根的服务集合中注册所有类型
//...
services.AddScoped<INotificationService, TextNotificationService>();
services.AddScoped<INotificationService, EmailNotificationService>();
services.AddScoped<INotificatonStrategy, NotificationStrategy>();
//...
并且在解析所需类型时应注入所有依赖项,因为构造函数已经将 IEnumerable<INotificationService>
作为构造函数参数
我想解决继承 控制器 接口的多个 class 的 IEnumerable 集合的依赖关系。
我想在应用程序启动期间解决以下依赖关系:
var notificationStrategy = new NotificationStrategy(
new INotificationService[]
{
new TextNotificationService(), // <-- inject any dependencies here
new EmailNotificationService() // <-- inject any dependencies here
});
NotificationStragey
public class NotificationStrategy : INotificatonStrategy
{
private readonly IEnumerable<INotificationService> notificationServices;
public NotificationStrategy(IEnumerable<INotificationService> notificationServices)
{
this.notificationServices = notificationServices ?? throw new ArgumentNullException(nameof(notificationServices));
}
}
在不使用任何外部依赖项或库的情况下,在 asp.net 核心中对 IEnumerable 类型的对象进行依赖项注入的最佳方法是什么?
在复合根的服务集合中注册所有类型
//...
services.AddScoped<INotificationService, TextNotificationService>();
services.AddScoped<INotificationService, EmailNotificationService>();
services.AddScoped<INotificatonStrategy, NotificationStrategy>();
//...
并且在解析所需类型时应注入所有依赖项,因为构造函数已经将 IEnumerable<INotificationService>
作为构造函数参数