Like the title says, is there a way to "reuse" a SessionFactory
for multiple databases? Since instantiating the SessionFactory
takes time, I wonder if it would be possible to pool these instances and reuse them, changing only the connection/database name. Obviously, first level cache would be cleared, but I am trying to avoid the penalty involved in instantiating the factory itself.
The background is that I can have several small "pluggable" databases with exactly the same schema, so there is no need for NHibernate to rebuild all mappings every time.
You can dynamically create
Session
instances from the same session factory for different databases by first opening a standard ADO.NETConnection
object appropriate for the target database and passing it to the NHSessionFactory
instance like this:I recommend you use a Dependency Injection container to control the lifetime and disposal of the ADO.NET connection instance instead of creating it directly as shown in the simplified code shown above.
Another gotcha is that NHibernate performs database access when the
SessionFactory
instance is spun up so you need to either provide a valid connection string in the hibernate.cfg.xml file or dynamically inject that into the session factory configuration logic.UPDATE:
Groo provided a link to a great post on dynamically switching databases in NHibernate. Follow the advice in that post rather than doing something like the sample code shown above.