I have a DataSet which will be filtered twice like the following. How can I set the RowFilter property of the DataView twice? Or is there any other better implementation than the one below?
DataView dv = new DataView(myDataSet.Tables[0]);
dv.RowFilter = "approved = 1";
dv.Sort = "BookingDate";
foreach row{
//Filter by shiftTime in filtered DataView
foreach column{
//Find date in filtered DataView
}
}
Thank you in advance for your help.
Thanks, artsylar