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