Para mí, aumentar el CommandTimeout solucionó el problema.
Ejemplo de código:
//time in seconds
int timeOut = 300;
//create command
MySqlCommand myCommand = new MySqlCommand(stringSQL);
//set timeout
myCommand.CommandTimeout = timeOut;
Para mí, aumentar el CommandTimeout solucionó el problema.
Ejemplo de código:
//time in seconds
int timeOut = 300;
//create command
MySqlCommand myCommand = new MySqlCommand(stringSQL);
//set timeout
myCommand.CommandTimeout = timeOut;