How to visualize database table schema in VS

How to display this table schema in my database and foreign keys that bind them in VS?

An example of such a scheme is used in this matte label question.

+7
database visual-studio schema
source share
1 answer

They can be executed through Visual Studio or Sql Server Management Studio.

In the visual studio, simply open the "Server Explorer" window, right-click the "Database Diagrams" folder (under the desired db) and select "Add Database Diagram", just drag and drop the table diagrams you need.

Through the Sql server management studio, this is done in exactly the same way (just without the server explorer window).

+9
source share

All Articles