ADO.NET + LINQ 连接 = 他们可以重用相同的连接吗?
我在一个 Winforms 应用程序中有一个到 SQL Server 的 ADO.NET 连接对象(它将使用连接池及其所有优点)。
我们正在向此应用程序添加一些新内容,并且我们认为可以在 LINQ to SQL 中完成此操作,问题是,如果我们打开一个如下所示的新连接:
MyDataContext dc = new MyDataContext(Connection_String_To_The_Same_SQLServer);
...如果连接字符串与我们在我们的应用程序上使用的相同“旧”ADO.NET 方法,这会受益于池化还是会启动新连接?
I have an ADO.NET connection object to an SQL Server (which will use connection pooling and all the nice things about it) in one Winforms application.
We're adding some new stuff to this application and we thought that we could do it in LINQ to SQL, the question is, if we open a new connection like this:
MyDataContext dc = new MyDataContext(Connection_String_To_The_Same_SQLServer);
…if the Connection string is the same we're using on our "old" ADO.NET methods, will this benefit from pooling or will start a new connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它将像 ADO.NET 的任何其他部分一样使用池。所有这些都建立在相同的基础设施之上。
It will use pooling just the same as any other bit of ADO.NET. It's all built on the same infrastructure.