翻譯

  當使用依賴注入容器時,你首先要向容器中注冊你的組件,Windsor使用installers(該類型實現(xiàn)IWindsorInstaller接口)來封裝和隔離注冊的邏輯,可以使用Configuration和FromAssembly來完成工作。

  Installers是實現(xiàn)了IWindsorInstaller接口的簡單類型,只有一個Install方法,該方法接收container參數(shù),該參數(shù)使用 fluent registration API方式來注冊組件

  

iOS培訓,Swift培訓,蘋果開發(fā)培訓,移動開發(fā)培訓

public class RepositoriesInstaller : IWindsorInstaller
{   public void Install(IWindsorContainer container, IConfigurationStore store)
   {
      container.Register(AllTypes.FromAssemblyNamed("Acme.Crm.Data")
                            .Where(type => type.Name.EndsWith("Repository"))
                            .WithService.DefaultInterfaces()
             &nb