I am releasing a newer version of my Windows application. There are DB schema changes in the new version. Also I do not want to lose the data.
So the approach that I ha
Create your Database Migration scripts and run them with a tool such as Db Up to keep track of schema changes. SQL Scripts migrate your database from version 1 to 2, 2 to 3, etc. Schema Compare is another option mentioned in a previous question.