Question

I'm developing an ASP.NET application using Windsor and NHibernate. I want to use Castle's new NHibernateFacility but I'm stuck on .NET 3.5 and NHibernateFacility along with AutoTx are targeted only to .NET 4.

Is it safe to recompile them on v3.5? If not, is there another easy way to maintain more than one ISessionFactory per application?

Was it helpful?

Solution

the easiest way is IDictionary<string, ISessionFactory>. If the access is single threaded or all sessionfactories are initialised at startup then no synchronisation is needed.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top