0

我在 ASP.NET MVC2 中构建了一个后端,它有一个底层的基于 ADO.NET 实体的数据库。

在 MVC 后端,我调用我的数据库实体,即:

Entities entities = new Entities();

...一切正常。

不幸的是,在我的 Azure/mvc2 项目中,我的工作角色使 azure 项目抛出奇怪的异常:

"The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid."

女士们先生们有什么想法吗?

4

1 回答 1

0

自己解决了 - 这是一个 PEBKAC 问题。必须在 Worker 角色的 App.config 中手动设置配置字符串(从 ASP/NET MVC2 项目的 Web.config 复制粘贴)。

现在一切正常。

于 2010-07-06T10:46:33.967 回答