Table Property broken after C# Typed DataSet Copy()
问题 I've got a typed DataSet with multiple tables that I want copy, complete with data as well as schema. I can access the tables like so in my original: MyDataSetType dsMyFirstDataSet; MyDataTableType dtTable1; MyDataTableType dtTable2; dtTable1 = dsMyFirstDataSet.MeaningfulTableName1; dtTable2 = dsMyFirstDataSet.MeaningfulTableName2; When I do the following, I can no longer access the tables via the names in the new version but I can via the Tables collection. MyDataSetType dsMySecondDataSet;