quot;Update-Databasequot; command fails with TimeOut exception(“更新数据库命令因超时异常而失败)
问题描述
我正在使用 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
}
}
这篇关于“更新数据库"命令因超时异常而失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“更新数据库"命令因超时异常而失败


基础教程推荐
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01