Create a
PropertyProjectionSelector for the specified type and property name.
Syntax
Parameters
- instanceType
- propertyName
- alias
Example
C# | Copy Code |
---|
public void OrderBySample1() {
var mgr = new DomainModelEntityManager();
var selector = new PropertySortSelector(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