博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
给Entity Framework添加执行的超时时间
阅读量:5130 次
发布时间:2019-06-13

本文共 524 字,大约阅读时间需要 1 分钟。

可以写一个部分类

public partial class eBuulMCEntities {     public eBuulMCEntities(int? commandTimeout)  : base("name=eBuulMCEntities")           {             // Get the ObjectContext related to this DbContext                              var objectContext = (this as IObjectContextAdapter).ObjectContext;                  // Sets the command timeout for all the commands                              objectContext.CommandTimeout = commandTimeout;           }  }

 

转载于:https://www.cnblogs.com/yxlblogs/archive/2013/01/18/2866306.html

你可能感兴趣的文章
新阶段
查看>>
屏幕适配
查看>>
mysql使用索引优化查询效率
查看>>
lca转RMQ
查看>>
HTML5+CSS3 效果网站集合
查看>>
关于前端开发小程序随笔
查看>>
关于Filter和转发之间的小问题
查看>>
ios framework通用库的制作
查看>>
Python-Day1编写登陆接口
查看>>
口译常见翻译词组
查看>>
Nginx 配置遇到问题
查看>>
安装并配置ROS环境1
查看>>
MySql 记录(1) -- MySQL官网下载地址
查看>>
magento关于站点搬家,换空间
查看>>
FTP之断点续传
查看>>
django模板之变量
查看>>
状态模式
查看>>
使用微软企业库EnterpriseLibary访问SQLite数据库
查看>>
全屏自适应
查看>>
Qt Creator 编译测试 MQTT-C
查看>>