I had a windows service relying on EF, and it was running fine until the server went down. The problem was after the server went up again, it didn\'t fix itself and still t
What is the lifetime of your ObjectContext? If you are using a single ObjectContext for the lifetime of your service that would cause problems like this. You should instead scope the ObjectContext lifetime down to a smaller window of time, creating a new one for each unit of work.