SQLite 连接池与 Fluent NHibernate

发布于 2024-08-30 14:57:25 字数 326 浏览 5 评论 0原文

有没有办法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朮生 2024-09-06 14:57:25

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文