我有一个接受三个构造函数参数的类。在我的组合根目录中,我想只定义/覆盖三个构造函数参数中的一个;其他两个依赖项已经映射到我的DI容器中,应该从IServiceProvider创建。
使用Ninject,我可以这样做:
Bind<IMyInterface>().To<MyClass>()
.WithConstructorArgument("constructorArgumentName", x => "constructor argument value");
当Ninject创建MyClass时,它使用此字符串参数并自动为我注入其他两个依赖项。我在.net核心遇到的问题是我无法告诉IServiceCollection我只想指定三个参数中的一个,我必须定义所有这些或者没有。例如,在.net核心中,这就是我必须要做的事情:
services.AddTransient<IMyInterface>(x=> new MyClass("constructor argument value", new Dependency2(), new Dependency3());
我不喜欢创建Dependency2和Dependency3类的新实例;这两个类可以有自己的构造函数参数。我只是希望DI管理这些依赖项。所以我的问题是 - 在使用IServiceCollection类在.net核心中映射依赖项时,如何覆盖单个构造函数参数?
如果你不能只覆盖一个contructor参数,那么如何使用IServiceCollection解决依赖?我尝试过这样的事情:
services.AddTransient<IMyInterface>(x=> new MyClass("constructor argument value", serviceCollection.Resolve<IDependency2>(), serviceCollection.Resolve(IDependency3>());
但这不起作用,我无法弄清楚如何使用IServiceCollection解决依赖关系。
答案 0 :(得分:7)
试试这个:
services.AddTransient<IDependency2, Dependency2Impl>();
services.AddTransient<IDependency3, Dependency3Impl>();
services.AddTransient<IMyInterface>(provider=>
return new MyClass("constructor argument value",
provider.GetService<IDependency2>(),
provider.GetService<IDependency3>());
);
答案 1 :(得分:0)
示例:
服务缺点:
public SkillsService(IRepositoryBase<FeatureCategory> repositoryCategory, int categoryId)
启动:
services.AddScoped<ISkillsService>(i => new SkillsService(services.BuildServiceProvider().GetService<IRepositoryBase<FeatureCategory>>(), AppSettingsFeatures.Skills));
答案 2 :(得分:0)
对于任何想要通用但灵活的解决方案的人:https://gist.github.com/ReallyLiri/c669c60db2109554d5ce47e03613a7a9
API是
public static void AddSingletonWithConstructorParams<TService, TImplementation>(
this IServiceCollection services,
object paramsWithNames
);
public static void AddSingletonWithConstructorParams(
this IServiceCollection services,
Type serviceType,
Type implementationType,
object paramsWithNames
);
public static void AddSingletonWithConstructorParams<TService, TImplementation>(
this IServiceCollection services,
params object[] parameters
);
public static void AddSingletonWithConstructorParams(
this IServiceCollection services,
Type serviceType,
Type implementationType,
params object[] parameters
);
通过构造函数方法反射实现。