¡@

Home 

c# Programming Glossary: sessionfactory

Ensure NHibernate SessionFactory is only created once

http://stackoverflow.com/questions/2362195/ensure-nhibernate-sessionfactory-is-only-created-once

INhibernateSessionFactory private static ISessionFactory _sessionFactory public ISession OpenSession if _sessionFactory null var cfg.. _sessionFactory public ISession OpenSession if _sessionFactory null var cfg Fluently.Configure . Database SQLiteConfiguration.Standard.ShowSql.. MappingsPersistenceModel _sessionFactory cfg.BuildSessionFactory BuildSchema cfg return _sessionFactory.OpenSession..

NHibernate, and odd “Session is Closed!” errors

http://stackoverflow.com/questions/2572015/nhibernate-and-odd-session-is-closed-errors

class SessionFactoryProvider IDisposable ISessionFactory sessionFactory public ISessionFactory GetSessionFactory if sessionFactory.. public ISessionFactory GetSessionFactory if sessionFactory null sessionFactory Fluently.Configure .Database MsSqlConfiguration.MsSql2005.ConnectionString.. ISessionFactory GetSessionFactory if sessionFactory null sessionFactory Fluently.Configure .Database MsSqlConfiguration.MsSql2005.ConnectionString..

What is the best NHibernate session management approach for using in a multithread windows service application?

http://stackoverflow.com/questions/6353692/what-is-the-best-nhibernate-session-management-approach-for-using-in-a-multithre

class SessionFactory protected static ISessionFactory sessionFactory private static ILog log LogManager.GetLogger typeof SessionFactory..