DataSet merge method
Problem with DatSet merge method in .NET Framework 2.0 Beta2
I have an problem with the DataSet merge method:
Our application middle tier returns an untyped DataSet which I merge into an typed DataSet.
Something that works like:
Dim ds As New DataSet
SqlDataAdapter1.Fill(ds)
DataSet11.Merge(ds)
In .NET framework 1.1 the data is merged into the typed data table with correspondent tablename.
In .NET framework 2.0 Beta2 the merge method adds new DataTables to the DataSet (after merge DataSet has two tables with same tablename)
If this isn't a bug in .NET Framework 2.0 Beta2, what ist the best method to merge data?
Thx, Hansjoerg

