在 Visual Studio 中设计 SQL 架构并自动生成 SQL 脚本来创建和升级数据库
我对 SQL 不太了解,但这就是我想要的:
- 在 Visual Studio 中直观地设计一个 SQL 数据库模式
- 让 VS 为该数据库生成一个创建脚本
- 跟踪对我的模式的修改并自动生成升级 SQL 脚本
- 生成我可以使用的实体类使用 WCF(没有循环引用问题)
这可能吗?
我使用的是 Visual Studio 2010 Ultimate
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知道在视觉工作室中没有办法做到这一点。不过,您可以使用 SQL Server Management Studio。您可以通过执行以下操作来启用此功能:
下面
还有一些外部工具可以实现此目的,例如:
http://www.sqldbtools.com /Tools.aspx?ProductId=1
我已经使用了上面链接中的程序,它的工作方式就像一个魅力。
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:
below
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.