我知道您可以在创建<{1>} 时添加注册::
LifetimeScope
是否可以在创建using(var scope = container.BeginLifetimeScope(builder =>
{ builder.RegisterType<Override>().As<IService>();
builder.RegisterModule<MyModule>();
}))
{
// The additional registrations will be available
// only in this lifetime scope.
}
后添加注册? (例如,在LifetimeScope
块中添加注册)
答案 0 :(得分:0)
您可以访问ComponentRegistry
的{{1}}属性,您可以使用此对象注册可以使用ILifetimeScope
静态方法创建的新IComponentRegistration
:
RegistrationBuilder