OrderByExpression::DataField Property
.NET Framework (current version)
Gets or sets the property of the IQueryable object to sort by.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
The OrderByExpression object sorts the data in a data field. Subsequent sort operation can be performed on a different data field by using the ThenByExpressions property.
The following example shows how to sort data by the ListPrice field in descending order and then by the product ID field in ascending order. This code example is part of a larger example that is provided in Walkthrough: Filtering Data in a Web Page Using Declarative Syntax.
<asp:OrderByExpression DataField="ListPrice"
Direction="Descending">
<asp:ThenBy DataField="ProductID" Direction="Ascending"/>
</asp:OrderByExpression>
.NET Framework
Available since 4.0
Available since 4.0
Show: