2
我在VS2012上啓動了一個MVC項目,創建了我的模型,我的控制器和我的視圖。我首先使用實體框架代碼,所以我啓用了遷移,並根據代碼中的更改相應更新數據庫。 頁面運行正常,數據庫正常工作,數據正在被檢索,因此它的功能,一切都很好。SQL Server對象資源管理器不顯示我的數據庫
的問題是,我看到在我的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的對象資源管理器中顯示出來...... 我已經檢查this answer,但我的對象瀏覽器中的服務器已經是正確的了。
沒錯,就是這樣,謝謝你的提示。 –