Does EF Core have a connection pool?

跟風遠走 提交于 2020-06-17 02:36:07

问题


The DbContext of EF Core is scoped in the ASP.NET Core services. So a new DbContext is created on each request. Does this mean that a new connection is opened on each request, including all the overhead like logging in to the database? Or is there a connection pool that is independent of the DbContext?


回答1:


The underlying ADO.NET provider like System.Data.SqlClient usually implements a connection pool



来源:https://stackoverflow.com/questions/56635538/does-ef-core-have-a-connection-pool

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!