2014-03-18 80 views
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,但我的對象瀏覽器中的服務器已經是正確的了。

回答

0

我認爲你是使用默認連接工廠連接的,它允許程序只在配置文件中沒有指定連接字符串時才定位數據庫。

正如你的web.config,我發現

<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" /> 

你的程序可以使用這個默認連接來連接數據庫。

當您安裝EF Nuget Package時,可能已經設置了默認連接。

欲瞭解更多有關默認連接工廠,看看http://msdn.microsoft.com/en-au/data/jj556606.aspx#Factory

+0

沒錯,就是這樣,謝謝你的提示。 –

相關問題