对 SubmitChanges() 的多线程访问 (LINQ to SQL)

发布于 2024-08-19 10:58:08 字数 190 浏览 10 评论 0原文

我正在使用 Visual Studio 2010 Beta 2。

在 Parallel.For 循环中,我使用不同的参数值执行相同的方法。执行后,处理后的数据必须存储在数据库中。

但我有一个异常帽子说我无法使用来自不同线程的相同数据上下文。

所以问题是如何从多个线程使用数据上下文和 SubmitChanges() ?

I am using Visual Studio 2010 Beta 2.

In Parallel.For loop I execute the same method with different parameter values. After execution processed data must be stored in the database.

But I've got an exception hat says that I could not work with the same data context from different threads.

So the question will be how to work with data context and SubmitChanges() from multiple threads?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陌若浮生 2024-08-26 10:58:08

我建议创建一个线程安全结构来存储结果。并行完成后,您可以从结构中读取这些内容并将它们推送到您的 linq 数据集中。

I would recommend creating a threadsafe structure for storing your results. Once your parallel for has completed you can read these out of the structure and push them into your linq dataset.

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