I am trying to follow the BackgroundWorker example listed here http://msdn.microsoft.com/en-us/library/wkays279.aspx under the heading of "Returning Values from Multithreaded Procedures "
I put a time consuming call to the database in the DoWork event handler of the BackgroundWorker. I expect that once I call BackgroundWorkerAsync(object) that this call will happen in the background and not block the rest of the application from executing. The problem is this does not happen. The whole application locks up and waits for the database call to return. Once it returns, the application is responsive again.
Here is my code
//initialization in a method.
Worker.DoWork += new DoWorkEventHandler(Worker_DoWork);
Worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(Worker_RunWorkerCompleted);
private void Worker_DoWork(object sender, DoWorkEventArgs e)
{
Retriever temp = (Retriever)e.Argument;
e.Result = temp.RetrieveLongDBCallThatReturnsADataSet() //App blocks until done.
}
private void Worker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
System.Data.DataSet result = (System.Data.DataSet)e.Result;
//Do stuff with the DataSet.
}
public void Retrieve(object arg1, object arg2, object arg3)
{
Retriever temp = new Retriever();
InitializeBackgroundWorker(); //wire up events
temp.Prop1 = arg1;
temp.Prop2 = arg2;
temp.Prop3 = arg3;
Worker.RunWorkerAsync(temp);
//Code that is expected to start executing, but instead blocks until temp.RetrieveLongDBCallThatReturnsADataSet() finishes.
}
Can anyone see what I am missing here? I did the same type of thing with a call to a WebService and that seems to be working fine.

DoWorkcall that blocks the main UI? (Could this be a red-herring?) – user166390 Jun 2 '11 at 2:47RetrieveLongDBCallThatReturnsADataSet? That's probably where the problem is... – Thomas Levesque Jun 2 '11 at 3:14//Code that is expected to start executing. There should be no code there. Move it to the RunWorkerCompleted event handler. – Hans Passant Jun 2 '11 at 3:14