Datatable.select

Hey @chen

Datatable Select:

DataTable has a Select method.It Gets an array of all DataRow objects that match the filter criteria, in the specified sort order.

Parameters

filterExpression
Type: - System.String
The criteria to use to filter the rows. For examples on how to filter rows, see DataView RowFilter Syntax [C#].

sort
Type:- System.String
A string specifying the column and sort direction.

Datatable Default View:-

Gets a customized view of the table that may include a filtered view, or a cursor position.

The DefaultView has the advantage of being there already by default, as the name implies.

The DefaultView property returns a DataView you can use to sort, filter, and search a DataTable.

Regards,!!
Aksh

1 Like