Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting timeouts using the Entity Framework (EF) when using a function import that takes over 30 seconds to complete. I tried the following and have not been able to resolve this issue:

I added Default Command Timeout=300000 to the connection string in the App.Config file in the project that has the EDMX file as suggested here: Entity Framework with MySQL - Timeout Expired while Generating Model

This is what my connection string looks like:

<add 
    name="MyEntityConnectionString" 
    connectionString="metadata=res://*/MyEntities.csdl|res://*/MyEntities.ssdl|res://*/MyEntities.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=trekdevbox;Initial Catalog=StarTrekDatabase;Persist Security Info=True;User ID=JamesTKirk;Password=IsFriendsWithSpock;MultipleActiveResultSets=True;Default Command Timeout=300000;&quot;" 
    providerName="System.Data.EntityClient" />

I tried setting the CommandTimeout in my repository directly like so:

private TrekEntities context = new TrekEntities();

public IEnumerable<TrekMatches> GetKirksFriends()
{
  this.context.CommandTimeout = 180;
  return this.context.GetKirksFriends();
}

What else can I do to get the EF from timing out? This only happens for very large datasets. Everything works fine with small datasets.

Here is one of the errors I'm getting:

System.Data.EntityCommandExecutionException: An error occurred while executing the command definition. See the inner exception for details. ---> System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

OK - I got this working and it's silly what happened. I had both the connection string with "Default Command Timeout=300000" and the CommandTimeout set to 180; When I removed the Default Command Timeout from the connection string, it worked. So the answer is to manually set the CommandTimeout in your repository on your context object like so:

this.context.CommandTimeout = 180; Apparently setting the timeout settings in the connection string has no effect on it.

share|improve this question
Remove &quot; from connection string – Frankston Ralphington III Jun 3 '11 at 21:00
2  
@hamlin11 In an EF connection string, that is required to define what part is connection string and what part is EF metadata. Leave &quot; in the string. – Alex Ford Jun 3 '11 at 21:30
@Chevex - Thanks, didn't know that – Frankston Ralphington III Jun 4 '11 at 1:58

2 Answers

up vote 33 down vote accepted

There is a known bug with specifying default command timeout within the EF connection string.

http://bugs.mysql.com/bug.php?id=56806

Remove the value from the connection string and set it on the data context object itself.

this.context.CommandTimeout = 180;

That line will work if you remove the conflicting value from the connection string.

share|improve this answer
6  
the DbContext class in entity framework does not have CommandTimeout Property – Saher Jul 31 '12 at 19:11
This was not for the fluent DbContext API. – Alex Ford Aug 3 '12 at 0:38

If you are using a DbContext, use the following constructor to set the command timeout:

public class MyContext : DbContext
{
    public MyContext ()
    {
        var adapter = (IObjectContextAdapter)this;
        var objectContext = adapter.ObjectContext;
        objectContext.CommandTimeout = 1 * 60; // value in seconds
    }
}
share|improve this answer
1  
Now this is what I was looking for! Thanks! – John Dec 7 '12 at 20:56
This has solved the problem in my case. Thanks. – Ivan Dec 20 '12 at 20:54
1 * 60? What an unnecessary multiplication, huh? – ErickPetru Mar 22 at 12:00
@ErickPetru, so you can easily change it to a different number of minutes :), also I would not be too surprised if the compiler optimizes out that multiplication! – Joel Verhagen Apr 30 at 6:14
@JoelVerhagen, do not be surprised. Here is a good explanation of when auto optimization occurs: stackoverflow.com/questions/160848/…. In this case, I suppose that even happen (since they are two literal values​​), but honestly I think the code is kind of strange this way. – ErickPetru Apr 30 at 18:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.