質問

I want the ConfigurableBootstrapper to discover all my modules rather than have to list them all. I cant find the property for this. I dont want to have to list the type array explicitly

  var bootstrapper = new ConfigurableBootstrapper(with =>
            {
                with.Modules(new Type[] {typeof (CompanyModule), typeof (UserModule)});
                with.Dependency<IDocumentSession>(RavenEmbeddedStore.Instance.Store.OpenSession());
            });
役に立ちましたか?

解決

It seems like AllDiscoveredModules() is the method you need:

var bootstrapper = new ConfigurableBootstrapper(with =>
        {
            with.AllDiscoveredModules();
            ...
        });
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top