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[i].Update(tables[i]);
or this:
for (int i = 0; i < adapters.Count; i++)
adapters[i].Fill(tables[i]);
But that doesn't seem to be feasible. Am I just missing something
obvious?
Thanks!