DataView??

  • Thread starter Thread starter perspolis
  • Start date Start date
P

perspolis

Hi all
I bound a datagrid to a DataTable.
I want to filter some rows of this table without using of DataView or
DefualtView..
Is it possible to do that??
 
Hi,
The other way around is to filter the rows in the select query itself.

Regards,
Angrez
 
if u bind a table to grid directly (not a view of it), behind the scenes,
its default view will be bound. so, if you want to apply a filter without
using view object, you can manually remove all rows u dont want, and bind it
to grid. but why dont u use view object?
 
because I used 2 tables one master and another details..
when user want to filter the master with it's Code,I want to show him just
that row ..
 
Back
Top