ADO.NET 2.0 TableAdapter and diffgrams
I've taken a look at the new TableAdapter in ADO.NET 2.0. I'm wondering how do you use Diffgrams (via dataset.GetChanges()) together with TableAdapters. They seems to be handy unless it comes to Diffgram based update scenarios.
My scenarios: I get an Diffgram of Dataset which contains a number of tables. I would like to update the tables using DataAdapters with this Diffgram. The problem is that the DataAdapter doesn't accept untyped datasets as been produced by dataset.GetChanges(). Is this not a supported scenario (do I need to use DataAdaptors?) or do I miss something. Any help is appreciated.

