我正在尝试使用Visual Studio 2012 Express for Desktop跟踪http://msdn.microsoft.com/en-us/data/jj193542上的视频教程。
我创建了POCO&和DbContext,运行了一些示例查询并且它有效。但我没有提供任何连接字符串。那么数据库在哪里? (可能是sdf或mdf文件?)
在教程中,该人使用SQL Server对象资源管理器来查看数据库,但我无法在VS Express中找到该视图。
作为参考,这是生成的默认App.config。
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
</entityFramework>
</configuration>
答案 0 :(得分:8)
“如果安装了SQL Express(包含在Visual Studio 2010中),则会在本地SQL Express实例(。\ SQLEXPRESS)上创建数据库。如果未安装SQL Express,则Code First将尝试使用LocalDb((localdb) )\ v11.0) - LocalDb包含在Visual Studio 2012“
中答案 1 :(得分:0)
@Default是正确的,VS 2015和2017中的默认SQL服务器是(LocalDb)\mssqllocaldb
。