Exception Details: System.Data.SqlClIEnt.SqlException: The user instance login flag is not supported on this version of SQL Server. The connection will be closed.
我剛開始將這個保留的設置修改為False,但是還不行,說登錄數據庫失敗。最後我查了文檔才知道原來精簡版本的SQL服務器和完全版的有些差別,就是user instance ,這個只有在精簡版中才有,如果你的項目開始是用的精簡版,以後要遷移到完全版的SQL上,就會出現上述錯誤,這個時候需要用ASPNET_REGSQL命令重新設置一下ASPnetdb數據庫,比且將連接字符串指向這個數據庫。
<remove name="LocalSqlServer"/>
<add name="LocalSqlServer" connectionString="Data Source=.;Integrated Security=True;Initial Catalog=ASPnetdb" providerName="System.Data.SqlClIEnt" />
這樣就應該沒問題了,希望這篇文章對受到這個問題困擾的朋友能起到幫助。