Is there a way to use Rhino.Commons with Fluent Nhibernate, (in particular AutoMapping)?
Many thanks
fromano
|
Is there a way to use Rhino.Commons with Fluent Nhibernate, (in particular AutoMapping)? Many thanks fromano | ||||
|
feedback
|
# # # # # # # # # #UPDATE: # # # # # # # # # #I wanted to use DatabaseTextFixtureBase from Rhino.Commons.ForTesting with FluentNHibernate. The problem that I kept coming up against was the fact that FluentNHibernate adds it's magic to the NHibernate configuration in the PersistenceModel class, and getting your hands on the NHibernate configuration once you call DatabaseTestFixtureBase.InitializeNHibernateAndIoC() Rhino.Commons does a bunch of stuff privately and you no longer have access to the NHibernate config. As it turns out, my last assumption was wrong. If you register an INHibernateInitializationAware service with the container, it will be picked up by the NHibernateUnitOfWorkTestContext when it calls CreatConfigs(). The INHibernateInitializationAware implementation that I am using looks like this:
Of course the Conventions can be replaced by any that you happen to be using. Enjoy! If you are using the latest version of FluentNHibernate you may be using the Fluently class to configure your mappings. Here's another version of the FluentNHibernateInitializationAwareConfigurator:
| |||||
|
feedback
|