Sorts the elements of a sequence according to a 
IdeaBlade.Linq.PropertySortSelector containing one or more sort criteria.
            
            
            
Syntax
            Parameters
- source
 
- selector
 
            Type Parameters
- TSource
 
            Return Value
A query containing the sort criteria
 
            
            
            
            
            
Example
| C# |  Copy Code | 
|---|
public void OrderBySample1() {
  var mgr = new DomainModelEntityManager();
  var selector = new SortSelector(typeof(Customer), "Country", ListSortDirection.Descending);
  var results = mgr.Customers.OrderBySelector(selector).ToList();    
} | 
 
 
            
            Remarks
            
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also