对 SubmitChanges() 的多线程访问 (LINQ to SQL)
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议创建一个线程安全结构来存储结果。并行完成后,您可以从结构中读取这些内容并将它们推送到您的 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.