How to create a relationship between two tables with Visual Studio 2013 in SQL Server Express LocalDB without SQL Server Management Studio?

I can easily create a table relationship with SQL Server Express in Visual Studio 2010 by right-clicking and selecting relationships in the table designer. How to create a relationship between two tables with Visual Studio 2013 in SQL Server Express LocalDB without SQL Server Management Studio? I'm confused. May be without T-SQL code. I would like a simple solution.

+4
source share
1 answer

You can install the Entity Framework Power Tools Beta from the following URL:

https://visualstudiogallery.msdn.microsoft.com/72a60b14-1581-4b9b-89f2-846072eff19d

, Visual studio 2013, . Visual Studio . , , DbContext. "Entity Framework" → " ". .

0

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


All Articles