I faced the same issue in my development environment, but I did not encounter this issue in my production environment.
I got around this problem (I don’t consider my approach a good solution) by modifying the Web.Debug.config and Web.Release.config as follow:
I replaced:
</configSections>
<connectionStrings configSource="connectionString.config" />
With :
<connectionStrings> <clear /> <add name="dashCommerce" connectionString="Server=mySQLserverName;Initial Catalog=myDatabaseName;User Id=MyuserName;Password=myPassword;" providerName="System.Data.SqlClient" />
</connectionStrings>
Please let me know if this works for you as well. Thanks
Chris, or anybody, what do you think the problem is?