I don't know much about SQL but this is what I want:
- Visually design an SQL database schema in Visual Studio
- Let VS generate a create script for this database
- Track modifications to my schema and automatically generate upgrade SQL scripts
- Generate entity classes I can use with WCF (without circular ref problems)
Is this possible somehow?
Im using Visual Studio 2010 Ultimate
In know of no way in visual studio to do that. You can however use SQL server management studio. You can enable this by doing:
Also there are some external tools that enable this like:
http://www.sqldbtools.com/Tools.aspx?ProductId=1
I have used the program from the link above and it works like a charm.