Click or drag to resize

MapperKernelSortSpec Method

Extract the parts of a SortSpec from a SortSpec.

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
protected bool SortSpec(
	ref string sort,
	out StringList fieldKeys,
	out StringList subqueries,
	out StringList onClauses,
	out StringList joinClauses
)

Parameters

sort
Type: SystemString
The sort (without ORDER BY), appropriate for use with in SQL ORDER BY clause.
fieldKeys
Type: NetQuarryStringList
The keys of the fields used to sort.
subqueries
Type: NetQuarryStringList
The subqueries to use to join in the sort values.
onClauses
Type: NetQuarryStringList
The join ON clauses to use to join in the sort values (without the ON keyword).
joinClauses
Type: NetQuarryStringList
The JOIN type to use to join in the sort values (INNER or LEFT).

Return Value

Type: Boolean
True if a SortSpec was provided, else false.
See Also