Unable to find the requested .Net Framework Data Provider. It may not be installed. - when following mvc3 asp.net tutorial

前端 未结 8 2063
-上瘾入骨i
-上瘾入骨i 2020-12-01 20:42

I am following the ASP.NET MVC 3 Music store application tutorial but I keep getting stuck in part 4: http://www.asp.net/mvc/tutorials/mvc-music-store-part-4. It keeps telli

相关标签:
8条回答
  • 2020-12-01 21:18

    In my case, the issue was caused by a connection problem to the SQL database. I just disconnected and then reconnected the SQL datasource from the design view. I am back up and running. Hope this works for everyone.

    0 讨论(0)
  • 2020-12-01 21:20

    I had a similer problem with SqlClient on WCF service. My solution was to put that lines in client app.config

      <startup>
         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
      </startup>
    

    Hopes it helps for someone..

    0 讨论(0)
提交回复
热议问题