实体框架是否使用数据库连接池?是默认的吗?
我一直在搜索 EF 如何利用与 SQL Server DB 的连接,以及它是否在幕后使用连接池,但我找不到任何相关细节。
I have been searching for a while about how EF utilizes connections to SQL Server DB, and whether it is using Connection pools under the hood, but I couldn't find any details about that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
连接池由底层数据源提供程序处理,而不是由实体框架处理。例如,MS SQL 提供程序默认支持并使用连接池。
将连接池与 SQL Server 结合使用
是一个不错的选择参考。
Connection pooling is handled by the underlying datasource provider, and not by the Entity Framework. The MS SQL provider, for example, supports and uses connection pooling by default.
Using Connection Pooling with SQL Server
is a good reference.