如何在我的 WebConfig 文件中更改 Linq 的 TimeOut?
有可能吗?
在代码隐藏中我可以写:
db.CommandTimeout = 3600;
这可以基于 WebConfig 条目来完成吗?
如何在我的 WebConfig 文件中更改 Linq 的 TimeOut?
有可能吗?
在代码隐藏中我可以写:
db.CommandTimeout = 3600;
这可以基于 WebConfig 条目来完成吗?
Save this and then go to your code behind and add the following:
db.CommandTimeout = Properties.Settings.Default.DBTimeOut;
This will then allow you to edit the DBTimeout Value via the Web.config typically at the bottom under Application Settings. This should get you what you want. Let me know if you need any more help