Hallo,
I have a object data source with a high band depth. Because of the huge data I want to load the data in a other thread. This is my way:
But I have several problems:
Now my question: Is it possible to load the data in the backgound thread? If yes: How?
Is there no possibility to load data in background???
Hi,how do you hold the data? Do you using a dataset? And how do you replace the dummies with the real data?
myDataSet.Tables["Orderdetails"].Merge(childDataTable, true, MissingSchemaAction.Add);
The dmmies will be replaced using the Merge function. Maybe this will help.....