我正在使用这样的命名参数在 Autofac 中注册某些类型
builder.Register<LogRequest>((c, p) =>
{
var param = p.Named<TenantConfigurations>("myparam");
if (param is MyClass)
{
return new LogRequest(param as MyClass);
}
return null;
});
我怎样才能对我用builder.RegisterAssemblyTypes
方法注册的类型做同样的事情。假设所有类型的构造函数都采用相同的参数param
更新
这就是我最终做的
Assembly.GetAssembly(CustomType)
.GetTypes()
.Where(t => t.IsSubclassOf(CustomType) && !t.IsAbstract)
.ToList().ForEach(t =>
{
builder.Register((c, p) =>
{
var param = p.Named<TenantConfigurations>("myparam");
if (param is MyClass)
{
return t.GetConstructor(new Type[] { typeof(TenantConfigurations) }).Invoke(new object[] { config });
}
});
});