ParseQueryTThenByDescending Method Parse
Sorts the results in descending order by the given key, after previous ordering has been applied. This method can only be called if there is already an OrderBy(String) or OrderByDescending(String) on this query.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public ParseQuery<T> ThenByDescending(
	string key
)

Parameters

key
Type: SystemString
The key to order by.

Return Value

Type: ParseQueryT
A new query with the additional constraint.
See Also

Reference