如何使用线程池和实体框架处理数据库操作?
我真的需要一些代码示例......我想要做什么:
GetCollectionFromDatabase
foreach item
{
resetEvents[i] = new ManualResetEvent(false);
var makeRequest = new MakeRequest(resetEvents[i]);
ThreadPool.QueueUserWorkItem(new WaitCallback(makeRequest.ThreadPoolCallback), i);
}
db.Save();
ThreadPoolCallback
{
update/delete the row
}
这是正确的方法吗?我是否将数据库作为 ThreadPoolCallBack 的引用传递?
I really need some code examples here... What I am trying to do:
GetCollectionFromDatabase
foreach item
{
resetEvents[i] = new ManualResetEvent(false);
var makeRequest = new MakeRequest(resetEvents[i]);
ThreadPool.QueueUserWorkItem(new WaitCallback(makeRequest.ThreadPoolCallback), i);
}
db.Save();
ThreadPoolCallback
{
update/delete the row
}
Is this the right appoach? Do I pass in the db as a ref to the ThreadPoolCallBack
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在线程池回调中创建一个上下文。实体框架上下文不是多线程的,不能被不同线程共享。
在这种情况下,我认为 db 是您的数据库上下文。您必须在 ThreadPoolCallback 中创建一个新的并将其保存在那里。
You will have to create a context within the thread pool callback. Entity framework contexts are not multi threaded and cannot be shared by different threads.
I take it
db
is your database context in this case. You will have to create a new one inThreadPoolCallback
and save it there.