Inside the Fluent Initialise Method, you must pass a couple of parameters like this
public static void Initialise(string connStr) { _Factory = Fluently.Configure().Database( MsSqlConfiguration.MsSql2005 .ConnectionString(connStr)) .Mappings(m => m.FluentMappings.AddFromAssemblyOf<SessionHandler>()) .ExposeConfiguration(cfg => {
Pay attention to "180" after each property, this will set the command timeout to 3 minutes
edit: just noticed that you want to do this on a basic, whoops record!
source share