我刚刚创建了一个全新的应用程序,通过 NuGet 添加了 EntityFramework 5,创建了一个非常基本的 DbContext 并向其中保存了一些数据。
我的数据到底在哪里,如何查看?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" />
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
</configuration>
通过检查db
对象,我可以看到我的连接字符串是
Data Source=(localdb)\\v11.0;Initial Catalog=ImageSignature.ImageContext;Integrated Security=True;MultipleActiveResultSets=True;Application Name=EntityFrameworkMUE
但所有这些对我来说都像是胡言乱语。我来自 MySQL 背景。
我的数据库到底在哪里,我如何查看它?我在 VS2012 的“服务器资源管理器”下看不到任何相关内容。