We are in the process of splitting our db into several smaller ones. The schemas will be exactly the same and we will control which db the system connects to when the client logs in. I receive an error if I do not set a connection string in my nhibernate configuration. I do not want to create a factory for each db. Is it possible to have a session factory provide a Session that I can set the connection string before using it?
Asked
Active
Viewed 517 times
2 Answers
1
Have not used it but there is a method ChangedDatabase on the Session.Connection. Maybe that would work?

epitka
- 17,275
- 20
- 88
- 141
-
does factory.OpenSession create a new session each time or is it cached? – Thad Dec 03 '09 at 16:50
-
each time, and it is in-expensive operation. – epitka Dec 03 '09 at 17:18