本文介绍了“更新数据库"命令因超时异常而失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 EF 迁移并且有一个包含大量数据的表.我需要更改混凝土柱的 MaxLength(它没有长度限制).
I'm using EF migrations and have a table with a lot of data. I need to change MaxLength of a concrete column (it hadn't length constraints).
ALTER TABLE MyDb ALTER COLUMN [MyColumn] [nvarchar](2) NULL
并且此命令因 TimeOut 异常而失败.尝试在 nDbContext 构造函数中设置 CommandTimeout 没有任何运气.
And this command fails with TimeOut exception. Tried to setup CommandTimeout i nDbContext constructor without any luck.
是否有任何方法可以禁用或设置包管理器控制台 EF 命令的超时?
Is there any way to disable or setup timeout for Package Manager Console EF commands?
推荐答案
自己找到了解决方案.
从 EF5 开始,有一个新属性 CommandTimeout 可从 DbMigrationsConfiguration
Since EF5 there is a new property CommandTimeout which is available from DbMigrationsConfiguration
internal sealed class MyMigrationConfiguration : DbMigrationsConfiguration<MyDbContext>
{
public Configuration()
{
CommandTimeout = 10000; // migration timeout
}
}
这篇关于“更新数据库"命令因超时异常而失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!