Can someone tell he how i can setup my fluent nhibernate connection to always connect as follows
- SET NOCOUNT ON
- SET ARITHABORT ON
- SET NUMERIC_ROUNDABORT ON
this is what i have at the moment
var fluentConfiguration = Fluently.Configure()
.Database(MsSqlConfiguration.MsSql2008.ConnectionString(ConnectionString).ShowSql());
fluentConfiguration = fluentConfiguration.Cache(c => c
.UseQueryCache()
.UseMinimalPuts()
.ProviderClass<HashtableCacheProvider>());
thanks Niall