Sorts the elements of a sequence according to an 
IdeaBlade.Core.ISortSelector. Sorts on multiple properties are supported.
            
            
            
Syntax
            Parameters
- source
 
- sortSelector
 
            
             
            
            
            
            
            
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();    
} | 
 
 
            
            
            
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