SortSpecificationsTSort Method (IQueryableT) | 
 Sorts a sequence according to the specifications that are held by this instance.
 
    Namespace: 
   Enkoni.Framework
    Assembly:
   Enkoni.Framework.Specifications (in Enkoni.Framework.Specifications.dll) Version: 1.3.0.1
Syntaxpublic IQueryable<T> Sort(
	IQueryable<T> query
)
Public Function Sort ( 
	query As IQueryable(Of T)
) As IQueryable(Of T)
public:
IQueryable<T>^ Sort(
	IQueryable<T>^ query
)
member Sort : 
        query : IQueryable<'T> -> IQueryable<'T> 
Parameters
- query
 - Type: System.LinqIQueryableT
The sequence that must be sorted. 
Return Value
Type: 
IQueryableTThe sorted sequence.
See Also