SQL Server对象资源管理器不显示我的数据库
本文关键字:显示 我的 数据库 资源管理器 Server 对象 SQL | 更新日期: 2023-09-27 17:50:55
我在VS2012上开始了一个MVC项目,创建了我的模型,控制器和视图。我使用实体框架代码优先,因此我启用了迁移,并根据代码中的更改更新数据库。页面运行正常,数据库工作正常,数据正在被检索,所以从功能上讲,一切都很好。
问题是,我看到没有连接字符串在我的web.config:
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=301880
-->
<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=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>
也没有数据库显示在SQL Server对象资源管理器…我已经检查了这个答案,但是我的对象资源管理器上的服务器已经是正确的。
我认为您使用默认连接工厂连接,它允许程序仅在配置文件中没有指定连接字符串时定位数据库。
就像在你的网页上一样。配置,我已经找到
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
您的程序可能正在使用这个默认连接来连接数据库。
默认连接可能是在您安装EF Nuget包时设置的。
有关默认连接工厂的更多信息,请查看http://msdn.microsoft.com/en-au/data/jj556606.aspx#Factory