QueryOrderBase
interfacein packageklyn.data.internal
public interface QueryOrderBase<T>:
QueryOrderBase

Provider-neutral comparison operation for one KQL order item.

The key type remains private to the concrete QueryOrder<T, K>, allowing a single plan to contain heterogeneous keys without erasing source row types.

Example
order as QueryOrderBase<User> = QueryOrder<User, String>(lambda(user): user.login)
Methods
Modifier and Type Member Description
public compare
compare(left as T, right as T) as Int
Compares two source rows using this ordering key.