Yiğit Yener
Yiğit Yener

Reputation: 5986

Custom columns on a strongly typed DataTable

I am using typed datasets to retrieve and manipulate data. To generate a typed dataset I use the built-in dataset designer and drag-drop tables from data sources. In addition, mostly I need to add custom columns to my data tables.

The problem is that when I make a change in the underlying database schema I simply delete and regenerate the data table and loose all the custom columns that I added earlier. So everytime I regenerate a data table I had to add these custom columns again and again.

So my question is that if there is an easy way to mantain or keep track of these custom columns?

Upvotes: 0

Views: 354

Answers (1)

Nick Wallace
Nick Wallace

Reputation: 97

Don't delete the DataTable and regenerate it. Instead right-click, choose configure and adjust the query to add/remove your new columns. Then click finish and the table will be updated in the DataSet but without deleting your customisations.

Upvotes: 1

Related Questions