在 System.Data.SqlClient 的源码中找到了答案(SqlConnectionString.cs#L37)
internal const int Max_Pool_Size = 100;
internal const int Min_Pool_Size = 0;
和 ASP.NET 一样,默认的最小连接数是0,默认的最大连接数是100。
查询了一下,貌似没有找到相关文章这篇dudu老大可以看看:
http://stackoverflow.com/questions/39763324/ef-core-and-big-traffic-leads-to-max-pool-size-was-reached-error