Hi,
I'm developing a WPF application that talks to a database through the Entity Framework, and I'm having huge issues trying to keep the application responsive. The DataContext isn't thread safe, so you can't do data access from background threads. You can't pass objects between DataContexts due to the object tracking (I've tried for 3 weeks...it always sort of works but never in all cases).
All I want to do is keep my application responsive while data access is going on. What patterns have you used with the Entity Framework to achieve this?
Thanks,
Roy