ADO.NET + LINQ 连接 = 他们可以重用相同的连接吗?

发布于 2024-08-05 11:54:50 字数 321 浏览 4 评论 0原文

我在一个 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 技术交流群。

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

发布评论

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

评论(1

葵雨 2024-08-12 11:54:50

它将像 ADO.NET 的任何其他部分一样使用池。所有这些都建立在相同的基础设施之上。

It will use pooling just the same as any other bit of ADO.NET. It's all built on the same infrastructure.

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