SQLite 连接池与 Fluent NHibernate
有没有办法使用 Fluent NHibernate 配置来设置 SQLite 连接池?
例如,相当于 DataSource=:memory:
的内容是:
var sessionFactory = Fluently
.Configure()
.Database(SQLiteConfiguration.Standard.InMemory)
(etc.)
是否有相当于 "Pooling=True;Max Pool Size=1;"
的内容?
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;"
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 NHibernate 配置,这样你就可以在 连接字符串 就像使用 ADO.NET 时一样。
You still need to specify a connection string when using Fluent NHibernate (or NHibernate without fluent for that matter) in the NHibernate configuration so you can just enable connection pooling in the connection string as you would if you were using ADO.NET.