I want the SaveChanges of the ObjectContext (Win apps) to SaveChanges asynchronously, will show a marquee (or controllable?) progress bar (this I can easily implement) for the user while he is able to continue working.

I basically want to override the SaveChanges of the ObjectContext.

Has anyone thought about this before?

link|improve this question

You should tag this question as .net. This will give it more visibility, and you might get more answers. – jpbochi Aug 4 '09 at 14:11
unfortunately there is no place for more than 5 tags. i think the other tags is already .net. – Shimmy Dec 31 '09 at 7:59
feedback

1 Answer

up vote 1 down vote accepted

I believe you need to use Asynchronous Delegates. It basically works like that:

  1. You create a delegate from the method you want to call asynchronously;

  2. You call BeginInvoke on the delegate, starting a call;

  3. You do whatever else you need to do (e.g. animate a marquee);

  4. You can either wait for the async call to finish, or check whether is has completed and keep animating the marquee if it isn't;

link|improve this answer
1  
I know this question (and answer) is quite old, but I stumbled upon it, and I think I would add something: Your solution isn't very interesting resource wise. We want to use the async pattern during DB calls to allow the current thread to be freed (and eventually reused) during the IO operation. If you use a delegate, it will start a thread from the thread pool which will be blocked while the blocking IO operation (SaveChange). It means that performance wise, asynchronous delegates are useless in this case: Don't use this implementation on a webserver. – Eilistraee Jan 30 '11 at 17:54
You're right. For long operations, this might not be a good idea. If you have a way to pass a callback to the underneath system and avoid blocking any threads, you must do that. – jpbochi Jan 31 '11 at 14:53
feedback

Your Answer

 
or
required, but never shown

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