http://stackoverflow.com/questions/6173566/run-time-registration-with-autofac

 

Yes you can, using the Update method on ContainerBuilder:

var newBuilder = new ContainerBuilder();
newBuilder.Register...;

newBuilder.Update(existingContainer);



http://stackoverflow.com/questions/33372771/autofac-cannot-resolve-dependency-using-factory-after-containerbuilder-update

 

Is it possible to remove an existing registration from Autofac container builder?

http://stackoverflow.com/questions/5091101/is-it-possible-to-remove-an-existing-registration-from-autofac-container-builder

 

相关文章:

  • 2021-08-07
  • 2021-10-26
  • 2021-09-03
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-04
  • 2021-07-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案