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
)
Protected Function SortSpec (
ByRef sort As String,
<OutAttribute> ByRef fieldKeys As StringList,
<OutAttribute> ByRef subqueries As StringList,
<OutAttribute> ByRef onClauses As StringList,
<OutAttribute> ByRef joinClauses As StringList
) As Boolean
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:
BooleanTrue if a SortSpec was provided, else false.
See Also