ComponentOne DataObjects for .NET
FillSort Property (TableView)

C1.Data.2 Assembly > C1.Data.SchemaObjects Namespace > TableView Class : FillSort Property
Gets or sets the sort field or fields, and sort order for filling the table view with data.
Syntax
'Declaration
 
Public Overridable Property FillSort As System.String
public virtual System.string FillSort {get; set;}
Remarks
This property controls the order in which data rows are sorted after fetch. By default, fetched data is sorted by primary key. If a different sort is required, set this property to the sort field name(s). To specify sort order (ascending/descending), add "ASC" (ascending) or "DESC" (descending) after the field name. If no order is specified, the order is "ASC" (ascending). Multiple field names are separated with commas.

Example: "CustomerID DESC, OrderID".

See Also

Reference

TableView Class
TableView Members