M
mordock32
By the looks of it, the design of the table adapter makes it very hard
to deal with a bunch of them in a generic way. Let's say I have a typed
data set with 10 tables and relations between then. Am I supposed to
hard code every fill and update for each table? Ideally I would do
this:
for (int i = 0; i < adapters.Count; i++)
adapters.Update(tables);
or this:
for (int i = 0; i < adapters.Count; i++)
adapters.Fill(tables);
But that doesn't seem to be feasible. Am I just missing something
obvious?
Thanks!
to deal with a bunch of them in a generic way. Let's say I have a typed
data set with 10 tables and relations between then. Am I supposed to
hard code every fill and update for each table? Ideally I would do
this:
for (int i = 0; i < adapters.Count; i++)
adapters.Update(tables);
or this:
for (int i = 0; i < adapters.Count; i++)
adapters.Fill(tables);
But that doesn't seem to be feasible. Am I just missing something
obvious?
Thanks!