Version

AppendSort<T> Method (SortContext)

Appends to this sort to the IOrderedQueryable sort
Syntax
'Declaration
 
Public MustOverride Function AppendSort(Of T)( _
   ByVal query As IOrderedQueryable(Of T) _
) As IOrderedQueryable(Of T)
public abstract IOrderedQueryable<T> AppendSort<T>( 
   IOrderedQueryable<T> query
)

Parameters

query
The existing query that already has a sort on it.

Type Parameters

T

Return Value

A sorted IOrderedQueryable, sorted on the currently sorted property.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also