【发布时间】:2018-08-15 23:13:13
【问题描述】:
我的 Azure WebJob 运行了至少两年,没有任何问题。 app.config 包含以下内容...
<connectionStrings>
<add name="UniversalModelEntities" connectionString="dummy - the actual connection string is specified in the portal but for some reason we need this element here" providerName="System.Data.EntityClient" />
</connectionStrings>
在门户的应用程序设置我有...
这运行没有任何问题...直到今天早上我发现错误
应用程序配置文件中的连接字符串“UniversalModelEntities”不包含必需的 providerName 属性。”
我在 Azure 门户中发现的有关 Entity Framework 连接字符串的所有内容都表明我应该将该下拉列表设置为 Custom。
那么问题出在哪里?
此外,我发现即使在 app.config 中声明完整的连接字符串,我仍然会收到相同的错误消息,这表明问题出在门户的设置上。
【问题讨论】:
标签: entity-framework azure connection-string azure-webjobs