The Database Diagrams folder is not displayed in Visual Studio 2017

Tell me why there is no folder in the SQL SERVER Object Explorer folder Database Diagrams?

enter a description of the image here

Author: MSDN.WhiteKnight, 2019-01-27

1 answers

The tools for creating database diagrams were removed from the post-2012 versions of Visual Studio. You can:

  • Install SQL Server Management Studio, it supports working with charts (you can download it here, it is also included in the "SQL Server Express with tools "packages")

  • Create an Entity Framework model or a typed DataSet based on the database ADO.NET. These tools provide functionality similar to charts databases.

Source: https://developercommunity.visualstudio.com/content/problem/67403/database-diagram-folder-missing.html

 1
Author: MSDN.WhiteKnight, 2019-02-07 04:19:39