### System information - **Windows 10**: - **.NET Core 3.0**: ### Issue - Loaded training data from SQL Server (1m rows) - SqlException Execution timeout in less than a minute - The query should complete even if it's slow (based on volume). There should also be a way to modify the sql command timeout. ### Source code / logs ` string connectionString = _config["Database.ConnectionString"]; string sqlCommand = await GetSql("OrderHistory.sql"); DatabaseSource dbSource = new DatabaseSource(SqlClientFactory.Instance, connectionString, sqlCommand); return dbSource;`
System information
Issue
Source code / logs
` string connectionString = _config["Database.ConnectionString"];