You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.UseSqlServer("Server=localhost,1433;Database=CursoEFCore;",
p =>p.EnableRetryOnFailure(maxRetryCount:2,// qtd de tentativamaxRetryDelay:TimeSpan.FromSeconds(5),// Aguardar 5 segundos após o erroerrorNumbersToAdd:null));
3 - Alterando o nome da tabela de histórico de migrações
.UseSqlServer("Server=localhost,1433;Database=CursoEFCore;",
p =>p.EnableRetryOnFailure(maxRetryCount:2,// qtd de tentativamaxRetryDelay:TimeSpan.FromSeconds(5),// Aguardar 5 segundos após o erroerrorNumbersToAdd:null).MigrationsHistoryTable("curso_ef_core"));