Has Microsoft deleted database diagrams from Visual Studio 2013?

I used to create all the relationships in my table using database diagrams, but after installing VS2013 the function seems to be missing. Has it been completely removed or can I turn it back on?

+6
source share
1 answer

Yes unfortunately,

From http://msdn.microsoft.com/en-us/library/y5a4ezk9.aspx :

β€œIn previous versions of Visual Studio, you could use Visual Database Tools to create tables, queries and views, and to create and maintain database charts. In Visual Studio 2013, the visual database tools are outdated, but the SQL Server database tools provide replacement features, To help you create tables, queries, and views, see SQL Server Data Tools (SSDT).

Neither Visual Studio 2013 nor SQL Server Database Tools replace database diagrams. You can use SQL Server Management Studio (SSMS) to work with database diagrams. SSMS is installed with SQL Server 2012 SP1 Express (Download Center).

+7
source

Source: https://habr.com/ru/post/956647/


All Articles