Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Codice prima eccezione di timeout migrazione SQL personalizzata

Usa il file Configuration.cs per impostare il timeout personalizzato:

internal sealed class Configuration : DbMigrationsConfiguration<ApplicationDbContext>
{
    public Configuration()
    {
        AutomaticMigrationsEnabled = false;
        ContextKey = "YourDbContext";

        // New timeout in seconds
        this.CommandTimeout = 60 * 5; 
    }
}