Visual Studio 2015 - Sql Server Project Database Diagram

好久不见. 提交于 2019-12-05 01:38:55

As per MSDN (https://msdn.microsoft.com/en-us/library/y5a4ezk9.aspx) the Visual Database Designer was deprecated in Visual Studio 2013. If you're using an older version of Visual Studio, note that support for the design tool within Visual Studio stops at SQL Server 2008 R2. (See "Important" box on top of page at https://msdn.microsoft.com/en-us/library/ms171976.aspx )

The short answer: no.

Actually there are two ways that i know In Visual Studio.

  1. Add to project ADO.NET Entity Data model. It creates for you a .edmx file which contains a tables with relation. More info MSDN. It also install Entity framework.

  2. Open Server explorer > Connection to Database. Select Microsoft SQL Server, Server name=.; (or your PC name) and then choose your database schema.

    You can check this video.

I hope it helps you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!