SSDT on Visual Studio 2012 broken then fixed, broken again also broken on VS2013

萝らか妹 提交于 2019-11-29 11:16:59

The clue is Data Source=(localdb)\Projects;

EF 6.0.1 puts the databases here: Data Source=(localdb)\v11.0;

Data Source=(localdb)\v11.0;
Integrated Security=True;Connect Timeout=15;
Encrypt=False;TrustServerCertificate=False

in SSDT in vs2012/vs2013 [View, SQL Server Object Explorer],
right-click the node "SQL Server", then click "Add SQL Server..."

Type "(localdb)\v11.0" for the server name and click Connect.

You should now see both "(localdb)\v11.0" and "(localdb)\Projects" in SQL Server Object Explorer.

Your code first databases will be in the Databases node under "(localdb)\v11.0".

FWIW, i have zero idea why Microsoft made this annoying change.

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