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
}
}
这篇关于“更新数据库"命令因超时异常而失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“更新数据库"命令因超时异常而失败
基础教程推荐
- 如何激活MC67中的红灯 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- rabbitmq 的 REST API 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01