Open
Description
SchemaUpdate uses the connection directly to create a Command bypassing any opportunity to set the CommandTimeout (or any other settings). Any command taking longer than the default value (30 seconds for SqlCommand) will timeout.
connectionHelper.Prepare();
connection = connectionHelper.Connection;
meta = new DatabaseMetadata(connection, dialect);
stmt = connection.CreateCommand();