SQLite connection pooling with Fluent NHibernate
Posted
by Groo
on Stack Overflow
See other posts from Stack Overflow
or by Groo
Published on 2010-05-01T13:25:47Z
Indexed on
2010/05/01
13:27 UTC
Read the original article
Hit count: 350
Is there a way to setup SQLite connection pooling using Fluent NHibernate configuration?
E.g. equivalent of DataSource=:memory:
would be:
var sessionFactory = Fluently
.Configure()
.Database(SQLiteConfiguration.Standard.InMemory)
(etc.)
Is there something eqivalent to "Pooling=True;Max Pool Size=1;"
?
© Stack Overflow or respective owner