Is there a way to configure a SQLite connection to be joined using the Fluent NHibernate configuration?
eg. equivalent DataSource=:memory::
var sessionFactory = Fluently
.Configure()
.Database(SQLiteConfiguration.Standard.InMemory)
(etc.)
Is there something equivalent "Pooling=True;Max Pool Size=1;"?
Groo source
share