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

前端之家收集整理的这篇文章主要介绍了c# – CodeFirst:在配置中找不到指定的命名连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建一个测试项目来测试我的查询,每件事都没问题,除非我尝试测试使用实体连接的方法,我得到以下异常:
The specified named connection is either not found in the configuration,not intended to be used with the EntityClient provider,or not valid.

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

<connectionStrings>
    <add name="DataLayer.Context" connectionString="Data Source=.;Initial Catalog=TestQ;Integrated Security=True" providerName="System.Data.sqlClient"/>
 </connectionStrings>

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

解决方法

这不是执行Entity sql命令的方法.你应该这样做:
// If you have a DbContext instance:
var objectContext = ((IObjectContextAdapter)dbContext).ObjectContext;
var query = objectContext.CreateQuery<Crop>(esql);
var result = query.ToList();
原文链接:https://www.f2er.com/csharp/99940.html

猜你在找的C#相关文章