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?

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top