实体框架异常“底层提供程序在打开时失败”

问题描述 投票:0回答:6

我创建了一个 Windows 服务,它监听 TCP/IP 端口并使用实体框架将接收到的数据保存在数据库中。大多数时候它工作正常,但有时会抛出异常“底层提供程序打开失败”。在数据库中保存数据。 这是我的异常详细信息:

    Exception: 2/27/2014 10:31 AM:
    The underlying provider failed on Open.
     at System.Data.Entity.Core.EntityClient.EntityConnection.Open()
     at System.Data.Entity.Core.Objects.ObjectContext.EnsureConnection()
     at System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction[T](Func`1 func, IDbExecutionStrategy executionStrategy, Boolean startLocalTransaction, Boolean releaseConnectionOnSuccess)
     at System.Data.Entity.Core.Objects.ObjectQuery`1.<>c__DisplayClassb.<GetResults>b__9()
     at System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute[TResult](Func`1 operation)
     at System.Data.Entity.Core.Objects.ObjectQuery`1.GetResults(Nullable`1 forMergeOption)
    at System.Data.Entity.Core.Objects.ObjectQuery`1.<System.Collections.Generic.IEnumerable<T>.GetEnumerator>b__0()
     at System.Lazy`1.CreateValue()
     at System.Lazy`1.LazyInitValue()
     at System.Lazy`1.get_Value()
     at System.Data.Entity.Internal.LazyEnumerator`1.MoveNext()
     at System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source)
     at System.Data.Entity.Core.Objects.ELinq.ObjectQueryProvider.<GetElementFunction>b__1[TResult](IEnumerable`1 sequence)
     at System.Data.Entity.Core.Objects.ELinq.ObjectQueryProvider.ExecuteSingle[TResult](IEnumerable`1 query, Expression queryRoot)
     at System.Data.Entity.Core.Objects.ELinq.ObjectQueryProvider.System.Linq.IQueryProvider.Execute[TResult](Expression expression)
    at System.Data.Entity.Internal.Linq.DbQueryProvider.Execute[TResult](Expression expression)
    at System.Linq.Queryable.FirstOrDefault[TSource](IQueryable`1 source)
    at Service.DemoService.Save(String received, TcpClient client)

此异常背后的原因是什么?如何解决?

c# entity-framework
6个回答
7
投票

通常,在使用实体框架时,您需要通过将 MultipleActiveResultSets 设置为 true 来启用连接字符串中的 多个活动结果集 选项,如下所示。

<add name="conn" 
  connectionString="
    Data Source=.\;
    Initial Catalog=TDB;
    UID=admin123;
    PWD=123;
    MultipleActiveResultSets=True"
  providerName="System.Data.SqlClient" />

验证它是否解决了您的问题。


0
投票

检查您的 SQL Server 是否正在运行。 只需打开任务管理器并转到服务,单击下面的服务按钮并检查 SQL Server 是否正在运行。


0
投票

就我而言,问题是我用来连接 SQL Server 的帐户未添加到应用程序池身份中。将帐户“域\用户名”添加到应用程序池后,它就开始工作。


0
投票

改变 集成安全= False ; MultipleActiveResultSets=True 在你的连接字符串中,它应该可以工作。


0
投票

我遇到了这个错误,但我通过打开任务管理器,转到服务并检查我的 SQL Server 是否正在运行来解决它。您的 Sql 服务器应该正在运行。


0
投票

我正在使用所有这些,但这给出了相同的错误,然后我使用这个,这修复了我的错误。

最大池大小=100;

<add name="conn" 
 connectionString="
 Data Source=.\;
 Initial Catalog=TDB;
 UID=admin123;
 PWD=123;
 Max Pool Size=100;
 MultipleActiveResultSets=True"
 providerName="System.Data.SqlClient" />
© www.soinside.com 2019 - 2024. All rights reserved.