SqlEditor TurboSortMode Property CleanCode C# Libraries v1.2.03 API
Gets or sets a value indicating whether to re-sort the result set within the application.

Namespace: CleanCode.SqlEditorControls
Assembly: CleanCode.SqlEditorControls (in CleanCode.SqlEditorControls.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public bool TurboSortMode { get; set; }

Field Value

true if [turbo sort mode]; otherwise, false.
Remarks

The result set returned from the database will be sorted according to whatever "order by" clause is attached to the query. But different database systems (e.g. Oracle and SQL Server) sort differently, specifically on case and on certain special characters. For the occasion when you want to use this control in an application that wants to compare result sets from disparate database systems, enabling the TurboSort mode will re-sort result sets within the application itself and thus, by definition, sorting them consistently. See the MultiColumnSort API for more details.
See Also