I have a WCF service that processes some messages. I use EntityFramework to retrieve the messages. I add these messages to a ThreadPool queue and then process them. After proces
Don't share an ObjectContext -- or any object attached to it -- between threads. It is documented to be non-thread-safe.