我需要能够使用 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 提供程序有关。
我想做的甚至可能吗,这是正确的方法吗?