Click or drag to resize

DataSourceCommandsExecuteDataSourcesOfTables Method

This command will executes all data sources in all provided tables, using the background execution dialog. For that, it takes into account the dependencies of each data source to other tables, and execute those sources first, which do not have dependencies to tables for which the data source is executed later.

Namespace: Altaxo.Worksheet.Commands
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void ExecuteDataSourcesOfTables(
	IEnumerable<DataTable> sortedTables,
	IProgressReporter reporter
)

Parameters

sortedTables  IEnumerableDataTable
The data tables for which to execute the data sources. They must be sorted by dependence on the other tables (less dependent tables coming first, see TrySortTablesForExecutionOfAllDataSources(IEnumerableDataTable, ListDataTable, String)).
reporter  IProgressReporter
The progress reporter that is showing the progress. If a reporter is provided, it is assumed that we run already on a background thread, thus, the data sources are executed in this thread.
See Also