9

我想将 ConnectionTimeout 设置为默认值以外的值,即 15 秒。我继承了一些使用 EntityFramework 的代码,app.config 如下所示:

<configuration>
   <configSections>
      <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=.\SQLEXPRESS; Integrated Security=True; ConnectionTimeout=30; MultipleActiveResultSets=True" providerName="System.Data.SqlClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
  <parameters>
    <parameter value="Data Source=.\SQLEXPRESS; Integrated Security=True; ConnectionTimeout=30; MultipleActiveResultSets=True" />
  </parameters>
</defaultConnectionFactory>
</entityFramework>

我是添加 sectino 以试图让事情正常进行的人。我可以说在以下位置设置断点不起作用:

var adapter = (IObjectContextAdapter) this;
var objectContext = adapter.ObjectContext;
objectContext.CommandTimeout = CommandTimeoutSeconds;
int test = objectContext.Connection.ConnectionTimeout;

测试总是 15。这是怎么回事?有人可以告诉我如何设置 ConnectionTimeout 吗?我已经尝试过“ConnectionTimeout”和“Connection Timeout”,即没有空间与空间。

有人能帮我吗?我正在拔头发。我敢肯定这是一个简单的修复!戴夫

附加信息。作为对评论的回应,这是我的 DbContext 派生类...

public class SessionDataContext : DbContext
{
    // Command timeout (seconds)
    private const int CommandTimeoutSeconds = 30;

    /// <summary>
    /// Constructor that takes db name.
    /// The connection string and db itself is configured in the this project's app.config file
    /// </summary>
    /// <param name="dbName"></param>
    public SessionDataContext(string dbName) : base(dbName)
    {
        Database.SetInitializer(new SessionDataContextInitializer());

        // Set timeout (based on code from http://stackoverflow.com/questions/6232633/entity-framework-timeouts)
        var adapter = (IObjectContextAdapter) this;
        var objectContext = adapter.ObjectContext;
        objectContext.CommandTimeout = CommandTimeoutSeconds;
        int test = objectContext.Connection.ConnectionTimeout;
    }

    /// <summary>
    /// Session table's records
    /// </summary>
    public DbSet<Session> Sessions { get; set; }

    /// <summary>
    /// SessionType table's records
    /// </summary>
    public DbSet<SessionType> SessionTypes { get; set; }
}
4

1 回答 1

7

是我的愚蠢导致了这个问题!我把我的答案放在这里,以防将来有人遇到这个问题。我在上面输入的所有内容都是正确的,并且可以正常工作。但是,我正在查看的 app.config 文件位于类库(我们的 DataAccess 层)中。事实上,它根本没有被使用,而是使用了默认的 EntityFramework 设置。我不确定是什么让我尝试了它,但我将 app.config 设置从 DataAccess 层 app.config 移到了主 app.config 并且一切都运行良好。除了继承代码之外,我在辩护中只能说,我不清楚 app.config 中的值没有被使用,也没有在自己的代码中调用它们或使用它们。相反,MultipleActiveResultSets 和 ConnectionTimeout 由底层实体框架使用。

于 2013-08-29T22:45:49.167 回答