I like to use SQL Server Management Studio to modify and update my database. It is simpler, faster and safer than writing, it changes itself.
I studied the use of some kind of version control for databases and read about using the SQL Server database project in Visual Studio 2010.
I burned an existing database and imported it into a new SQL Server database project. Now, from what I can say, there is no GUI for editing the database; I cannot add columns, change data types or edit existing data without my own script. For example, in SQL Server Management Studio, I can right-click on the table name and select "Design", and then add / edit columns, change data types, etc. From there.
While Visual Studio Database Projects projects have some features that are not available in SQL Management Studio, I don’t think I can live without a “table designer”.
Is there a table constructor built into the VS Database Project? I just do not see?
source share