Update DataSet structure in Visual Studio to match new SQL Database Structure

52,653

From the MSDN Forums:

If you right-click the TableAdapter in the Dataset Designer and click 'Configure' the TableAdapter Configuration Wizard opens where you can reconfigure the main query that defines the schema of your table. This should leave the additional TableAdapter queries (the additional methods) that were added after initial configuration.

Of course the additional methods will also need to be reconfigured if they reference a column that has been removed from the table on the database, or if any of the column definitions change (for example, if the data type is changed or modified). So if an aditional column was added to the table and it allows Null values the existing methods should still work - just depends on the scope of change to the schema of the table in the database.

Share:
52,653
MattyG
Author by

MattyG

Updated on May 23, 2020

Comments

  • MattyG
    MattyG almost 4 years

    After making some changes to my SQL database structure (using scripts in SQL Server Management Studio), how can I update my DataSet.xsd file in Visual Studio to match the new structure? Must I do this manually?
    I considered deleting the DataSet and importing a new one, but I'll lose all my custom Table Adapter queries.