Set Command Timeout in entity framework 4.3

前端 未结 3 1278
囚心锁ツ
囚心锁ツ 2020-12-05 17:28

I cannot find the a way to set the command timeout of a linq query using entity framework 4.3 and its\' DbContext. How do I increase Commandtimeout in entity framework?

3条回答
  •  一生所求
    2020-12-05 18:01

    If you're using DbContext, you'll first need to drop down to ObjectContext:

    ((IObjectContextAdapter)context).ObjectContext.CommandTimeout = 180;
    

提交回复
热议问题