I am facing an issue when trying to run a migration. All I am trying to do is change an index in a table, which already has data in it.
I am using Entity framework 6.0 and an Azure SQL database.
I have searched all over the web and tried to add Timeout = 4000 in the connection string, but still no success.
"connectionString="Data Source=;Initial Catalog=;User Id=;Password=***; Connection Timeout=60; Timeout = 4000"
The issue that I am trying to solve is an execution timeout issue. I tried to modify this in the dbcontext: this.Database.CommandTimeout = 180; but still the execution timeout below, is being thrown after just 30 seconds!