vote up 1 vote down star

Hi

I have asked this on the castle list as i'm using the nh facility but it just dawned on me to ask it here too :)

sorry for the cross posting.

I'm using the nh facility to configure the following setup:

i have 1 database which stores generic report configuration. and another which stores the actual report data.

i also have 1 project for interacting with the report configuration database (entities and mappings etc) and another for interacting with the report data database (entities and mappings etc).

i've used the following to create 2 factories:

<facilities>
  <facility id="nhibernate">
    <factory id="nhibernate.factory.session1">
      ...
      <assemblies>
        <assembly>ReportData.Model</assembly>
      </assemblies>
    </factory>

    <factory id="nhibernate.factory.session2" alias="reporting">
      ...
      <assemblies>
        <assembly>Reporting.Model</assembly>
      </assemblies>
    </factory>
  </facility>
</facilities>

the problem is is that even though nhibernate.factory.session1 and nhibernate.factory.session2 are looking at different databases and have different assemblies configured it always seems to create the tables for both models in both DBs?

how do i tell nhibernate.factory.session1 to look at db1 and model1 and nhibernate.factory.session2 to look at db2 and model2?

cheers

w://

flag

2 Answers

vote up 0 vote down check

the solution here is to not use fluent when doing tackling complex scenarios.

link|flag
vote up 0 vote down

i have googled IConfigurationContributor - someone on the castle list mentioned this might be the way to go - and haven't come up with much - also greped the castle svn dir but couldn't find much in there.

here's what i've tried so far:

<castle>
  <components>
    <component id="GenericRepository"       type="Ideal.Web.Repository`1, Ideal.Web"/>
    <component id="RptRepository"           type="Ideal.Reporting.Domain.ReportRepository, Ideal.Reporting.Domain"/>
    <component id="RttmRptDataRepository"   type="Ideal.Rttm.Domain.ReportDataRepository, Ideal.Rttm.Domain"/>
    <component id="ReportingIdealConfigurationContributor"   type="Ideal.Reporting.Domain.IdealConfigurationContributor, Ideal.Reporting.Domain"/>
    <component id="RttmIdealConfigurationContributor"   type="Ideal.Rttm.Domain.IdealConfigurationContributor, Ideal.Rttm.Domain"/>
  </components>
  <facilities>
    <facility id="nhibernatefaciltity"
              isWeb="true"
              type="Castle.Facilities.NHibernateIntegration.NHibernateFacility,  Castle.Facilities.NHibernateIntegration"
              configurationBuilder="Ideal.Rttm.Web.FluentNHibernateConfigurationBuilder, Ideal.Rttm.Web">

      <factory id="sessionFactory1">
        <settings>
          <item key="show_sql">true</item>
          <item key="connection.provider">NHibernate.Connection.DriverConnectionProvider</item>
          <item key="connection.driver_class">NHibernate.Driver.SqlClientDriver</item>
          <item key="connection.connection_string">Data Source=.;Initial Catalog=reporting2;Integrated Security=SSPI;</item>
          <item key="dialect">NHibernate.Dialect.MsSql2005Dialect</item>
          <item key="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</item>
        </settings>
        <assemblies>
          <assembly>Ideal.Reporting.Model</assembly>
        </assemblies>
        <!--<contributors>
          <contributor key="ReportingIdealConfigurationContributor"/>
        </contributors>-->
      </factory>

      <factory id="sessionFactory2" alias="rttm">
        <settings>
          <item key="show_sql">true</item>
          <item key="connection.provider">NHibernate.Connection.DriverConnectionProvider</item>
          <item key="connection.driver_class">NHibernate.Driver.SqlClientDriver</item>
          <item key="connection.connection_string">Data Source=.;Initial Catalog=reporting3;Integrated Security=SSPI;</item>
          <item key="dialect">NHibernate.Dialect.MsSql2005Dialect</item>
          <item key="proxyfactory.factory_class">NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle</item>
        </settings>
        <assemblies>
          <assembly>Ideal.Rttm.Model</assembly>
        </assemblies>

      </factory>
      <!--<contributors>
        <contributor key="RttmIdealConfigurationContributor"/>
      </contributors>-->
    </facility>

    <facility id="atm" type="Castle.Facilities.AutomaticTransactionManagement.TransactionFacility, Castle.Facilities.AutomaticTransactionManagement" />
  </facilities>
</castle>

and here's an example contributor implementation:

public class IdealConfigurationContributor : IConfigurationContributor
    {
        public void Process(string name, Configuration config)
        {
            var models = new PersistenceModel();

            models.AddMappingsFromAssembly(typeof(Provider).Assembly);

            models.Conventions.Add(typeof(ForeignKeyConventionOverride));
            models.Configure(config);

            if (AppSettings.GetConfigurationBoolean("RebuildDb", false))
            {
                var export = new SchemaExport(config);
                var sb = new StringBuilder();
                TextWriter output = new StringWriter(sb);
                export.Drop(true, true);
                export.Execute(true, false, false, null, output);
                export.Create(true, true);
            }


        }
    }

and here is my now much slimmer configurationbuilder:

public class FluentNHibernateConfigurationBuilder : IConfigurationBuilder
    {
        public FluentNHibernateConfigurationBuilder() 
        {
            this.defaultConfigurationBuilder = new DefaultConfigurationBuilder();
        }

        #region IConfigurationBuilder Members

        public Configuration GetConfiguration(IConfiguration facilityConfiguration)
        {
            var defaultConfigurationBuilder = new DefaultConfigurationBuilder();
            Configuration configuration = defaultConfigurationBuilder.GetConfiguration(facilityConfiguration);

            return configuration;
        }

        #endregion

        private readonly IConfigurationBuilder defaultConfigurationBuilder;
    }

i'm pretty sure i'm doing something dumb - can anyone point me in the right direction?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.