我試圖創建數據庫模式的副本,然後在應用程序中暫時用它來進行測試,所以我不用不會改變實時數據。但是,無論我做什麼,它總是給我這個錯誤:對EF使用本地數據庫副本 - 「在配置中找不到指定的命名連接」
An exception of type 'System.ArgumentException' occurred in System.Data.Entity.dll but was not handled in user code
Additional information: The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid.
我試圖讓我的連接字符串如下所示:
<add name="EntitiesConnectionString" connectionString="Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\vipertest.mdf;Integrated Security=True" providerName="System.Data.SqlClient" />
<add name="EntitiesConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\vipertest.mdf;Integrated Security=SSPI;User Instance=True" providerName="System.Data.SqlClient"/>
我曾與一個MDF文件試過,沒有。
我在Web.Config和app.config中都這樣做了,但我總是得到相同的錯誤。
您的連接字符串實際上看起來不像實體框架連接字符串。發佈可能有助於解釋的答案。 –