Hi,
Just learning nhibernate with fluent, and my session provider looks like:
public class SessionProvider
{
private static ISessionFactory sessionFactory;
public static ISessionFactory SessionFactory
{
get
{
if (sessionFactory == null)
{
sessionFactory = Fluently.Configure()
.Database(MsSqlConfiguration.MsSql2005.ConnectionString( c => c.FromAppSetting("sqlserver")))
.Mappings( m => m.FluentMappings.AddFromAssemblyOf<UserMapping>())
.BuildSessionFactory();
}
return sessionFactory;
}
}
private SessionProvider()
{ }
public static ISession GetSession()
{
return SessionFactory.OpenSession();
}
}
Is this how I should be getting my session object? Is this the 'fastest' way to do this for a high traffic website?