当前位置:  开发笔记 > 编程语言 > 正文

CodeFirst:在配置中找不到指定的命名连接

如何解决《CodeFirst:在配置中找不到指定的命名连接》经验,为你挑选了1个好方法。

我创建一个测试项目来测试我的查询,每件事情都没关系,除非我尝试测试一个使用的方法Entity Connection,我得到以下异常:

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

在此输入图像描述


app.configTestQuery项目中的连接字符串是我的启动项目:

 
    
 

使用linq to entity的所有方法都可以正常工作并带来除此之外的数据?



1> Gert Arnold..:

这不是执行Entity SQL命令的方法.你应该这样做:

// If you have a DbContext instance:
var objectContext = ((IObjectContextAdapter)dbContext).ObjectContext;
var query = objectContext.CreateQuery(eSQL);
var result = query.ToList();

推荐阅读
黄晓敏3023
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有