【发布时间】:2020-08-12 22:48:01
【问题描述】:
我正在尝试从我的类库项目中的数据库中获取书籍列表,有一个 Windows 服务正在使用它。我正在使用实体框架来查询数据库,但无法获取列表。任何帮助,将不胜感激。当我添加 EF 时,它自动在类库中创建了一个 App.config,但看起来代码没有从它读取,也没有从主服务项目中读取。不知道在这里做什么? 这是我的错误和代码:
在应用程序配置文件中找不到名为“EmployeeDBEntities”的连接字符串。
at System.Data.Entity.Internal.LazyInternalConnection.get_ConnectionHasModel()
at System.Data.Entity.Internal.LazyInternalContext.InitializeContext()
at System.Data.Entity.Internal.InternalContext.Initialize()
at System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType)
at System.Data.Entity.Internal.Linq.InternalSet`1.Initialize()
at System.Data.Entity.Internal.Linq.InternalSet`1.GetEnumerator()
at System.Data.Entity.Infrastructure.DbQuery`1.System.Collections.Generic.IEnumerable<TResult>.GetEnumerator()
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
at service.website2.API.TimeController.GetBooks() in ..classfile.cs:line 40
at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.<>c__DisplayClass6_2.<GetExecutor>b__2(Object instance, Object[] methodParameters)
at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.Execute(Object instance, Object[] arguments)
at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ExecuteAsync(HttpControllerContext controllerContext, IDictionary`2 arguments, CancellationToken cancellationToken)
我的类库 App.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<connectionStrings>
<add name="EmployeeDBEntities" connectionString="metadata=res://*/Model.EmployeeDBModel.csdl|res://*/Model.EmployeeDBModel.ssdl|res://*/Model.EmployeeDBModel.msl;provider=System.Data.SqlClient;provider connection string="data source=LAPTOP-MyDb;initial catalog=EmployeeDB;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
</configuration>
我的主要服务 app.config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<!--<add key="connection" value="Initial Catalog=EmployeeDB;data source=LAPTOP-Nilanjan;Integrated Security=True"/>-->
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
没有什么花哨的基本配置,这里是类库中的主类调用:
public IHttpActionResult GetBooks()
{
List<Book> booksList;
using (EmployeeDBEntities entity = new EmployeeDBEntities())
{
booksList = entity.Books.ToList(); //this is where error occurs
}
return Ok(booksList);
}
【问题讨论】:
-
您是否尝试将
connectionStrings部分添加到主项目的.config。 -
是的,它不起作用。无法使用 (EmployeeDBEntities entity = new EmployeeDBEntities()) 引用 dbcontext 类
标签: c# .net entity-framework connection-string class-library