I was wondering if the DbContext class is thread safe, I am assuming it's not, as I am currently executing paralell threads that access the DbContext in my application and I am getting a host of locking exceptions and other things that look like they may be thread related.

Until recently I wasn't getting any errors...but until recently I wasn't accessing the DbContext in the threads.

If I am right, what would people suggest as a solution?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 4 down vote accepted

It's not thread safe. Simply create a new instance of DbContext in you thread.

link|improve this answer
feedback

No it is not thread safe - whole EF is not thread safe because EF context should never be shared.

link|improve this answer
So really you should create the dbcontext every time you want to use it? At the moment I just have a dbcontext field as part of my repository class, I suppose creating it when I need it will solve this problem... – dormisher May 25 '11 at 15:14
1  
You can have one context per repository if a new instance of repository is used by single logical transaction and if your repository is thread safe. – Ladislav Mrnka May 25 '11 at 15:15
yeh I guess, to save changes to the dbcontext I am guessing you have to call save changes on the same instance of dbcontext on which you made changes? – dormisher May 25 '11 at 15:18
You don't have to but then you have to deal with detached entities which can be pretty hard. You must detach entities from the first context (it breaks relations) attach them to a new context and say the new context what changes you did. – Ladislav Mrnka May 25 '11 at 15:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.