有没有办法用两个不同的范围注册相同的类型?
builder.RegisterType<ExecutionContextResolverElsterRuntime>()
.As<IExecutionContextResolver>()
.InstancePerOwned<**Workstation**>();
builder.RegisterType<ExecutionContextResolverElsterRuntimeV2>()
.As<IExecutionContextResolver>()
.InstancePerOwned<**WorkstationManager**>();
由于并行运行过程,动态更新容器是没有选择的。