我创建了一个测试项目来测试我的查询,每件事都没问题,除非我尝试测试使用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.config
项目TestQuery
中的我的连接字符串是我的启动项目:
<connectionStrings>
<add name="DataLayer.Context" connectionString="Data Source=.;Initial Catalog=TestQ;Integrated Security=True" providerName="System.Data.SqlClient"/>
</connectionStrings>
使用linq to entity的所有方法都可以正常工作并带来除此之外的数据吗?
答案 0 :(得分:5)
这不是执行Entity SQL命令的方法。你应该这样做:
// If you have a DbContext instance:
var objectContext = ((IObjectContextAdapter)dbContext).ObjectContext;
var query = objectContext.CreateQuery<Crop>(eSQL);
var result = query.ToList();
答案 1 :(得分:0)
尝试重命名连接名称,例如:“TestConn”
using(var con = new EntityConnection("name=TestConn"))
要尝试的另一件事是从app.config获取连接字符串,然后在EntityConnection的构造函数中传递它。
string cs = ConfigurationManager.ConnectionStrings["TestConn"].ConnectionString
var eConnection = new EntityConnection(cs);