问题 I have a large database and I need to organize searching accounts from my application. App is loaded data dynamically. NetworkBackgroundWorker is a class that send requeste to the server (with database). This class uses BackgroundWorker for waiting answer in the background. //Callback method Action<string> refToSP = SetParticipants; //Send a request to the server for getting account data NetworkBackgroundWorker.InvokeService( query, requestURL, methodName, refToSP); The SetParticipants method