使用Entity Framework访问远程数据库

时间:2012-10-10 13:56:36

标签: c# entity-framework

我需要能够使用EF访问远程服务器上的数据库。我在app.config中有远程数据库的连接字符串。

当我尝试这个时:

using (var ctx = new PinnReportEntities("name=remoteConnection"))
{
    .
    .
    .
}

我明白了:

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

命名连接在配置中并且有效,因此问题必须与EntityClient提供程序有关。

我想做什么甚至是可能的,这是正确的方法吗?

0 个答案:

没有答案