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
}
}
这篇关于“更新数据库"命令因超时异常而失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“更新数据库"命令因超时异常而失败


- C# 中多线程网络服务器的模式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01