When I deploy my project with \"Publish as Azure WebJob\" using Visual Studio 2013/update 4, I get the error in the title.
Reason of the problem
Change and/or add the name of the connection string in the web.config
.
Solution
Press the settings link and from the pop-up window select the 'Settings' Tab
Uncheck the use this connection string at runtime
from all your connection strings.
Save
button to close the window. (No need to Restart Visual Studio)NOTE
I am using VS 2017 (and according to the comments this work also in Visual Studio 2013)
Just for Note
After I did the previous steps, I noticed that the .pubxml file changed automatically. here is the difference which has been made (automatically without any interference from me)
So I think this is a better way because it is easier for the developer and also it let the visual studio to solve its problems himself, without forcing it into a specific thing.
I have Visual Studio 2015 Update 3 and i was facing the same issue. The solution i found that is working for me is the following:
1) Open *.pubxml file under properties -> publish profiles.
2) Look for the Path attribute under PublishDatabaseSettings section:
<PublishDatabaseSettings>
<Objects xmlns="">
<ObjectGroup Name="eRecall.ETL.Models.erecallContext" Order="1" Enabled="False">
<Destination Path="" />
<Object Type="DbCodeFirst">
<Source Path="DBContext" DbContext="eRecall.ETL.Models.erecallContext, eRecall.ETL" />
</Object>
</ObjectGroup>
</Objects>
</PublishDatabaseSettings>
3) Set Path attribute value to the following:
<PublishDatabaseSettings>
<Objects xmlns="">
<ObjectGroup Name="eRecall.ETL.Models.erecallContext" Order="1" Enabled="False">
<Destination Path="{deployment connection string}" />
<Object Type="DbCodeFirst">
<Source Path="DBContext" DbContext="eRecall.ETL.Models.erecallContext, eRecall.ETL" />
</Object>
</ObjectGroup>
</Objects>
</PublishDatabaseSettings>
4) Delete the existing webjob deployment in Azure Job Collection Scheduler.
5) Re-Deploy the webjob, Re-run the webjob from the scheduler and it starts working with no issues!
Hope this helps.
Create a Parameters.xml file in the Project root with the following content:
<?xml version="1.0" encoding="utf-8" ?>
<parameters>
<parameter name="DefaultConnection-Web.config Connection String"
description="DefaultConnection"
defaultValue="Server=tcp:x.database.windows.net,1433;Database=x_db;User ID=x@y;Password=z;Trusted_Connection=False;etc." tags="" />
</parameters>
All the other missing config elements can be added here as well.
Fixed by removing the following markup from the .pubxml file. You must exit/restart VS after removing the markup (or VS will add it back in).
<ItemGroup>
<MSDeployParameterValue Include="$(DeployParameterPrefix)DefaultConnection-Web.config Connection String" />
</ItemGroup>