Simply put:
- I am trying to use a visual studio database project to update my sql server database
- I change the names of the table columns by using the refactoring tool
- Once the column names are changed I do a schema comparison before making any final changes to the database
- However, I notice that it will drop the column who's name has been changed and then immediately re-adds it (this obviously leads to data loss which I don't want)
- How then can I change the settings in someway to make it do a simple change not a drop/add when changing the names of the columns