A collection of
SortSelectors providing for dynamic construction of OrderBy clauses.
Syntax
Example
C# | Copy Code |
---|
var mgr = new DomainModelEntityManager();
var entityType = typeof(Customer);
var baseQuery = EntityQuery.Create(entityType, mgr);
var ss1 = new SortSelector(Customer.EntityPropertyNames.Id);
var ss2 = new SortSelector(Customer.EntityPropertyNames.CompanyName);
var combined = ss1.ThenBy(ss2);
var results = baseQuery.OrderBySelector(combined).Execute(); |
Remarks
Inheritance Hierarchy
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