Click to See Complete Forum and Search --> : [RESOLVED] Can we Filter DataSet.Table rows collection


kvwarun
July 5th, 2008, 09:10 AM
Dear All

can we filter subset of DataSet.Table row collection in ADO.Net. Early days adodb's recordset was providing Filter method to get subset of its records, but i couldn't find a similar option in ado.net.

thanks in advance and looking for your immediate suggestions

Warun

dglienna
July 5th, 2008, 10:42 AM
Now it's .RowFilter

kvwarun
July 7th, 2008, 11:59 PM
Thanks and it solved....you cannot apply filter condition to DataSet.Table, but can in DataView. I have solved this by giving DataSet.Table reference to DataView. DataView is better datasource when you are working around web based program.

Warun