Hi,Can you please provide a sample code to filter DataSet which contains 2 tables.Also please help me to get only few records from Data set,I know how to do this with DataTable like...
grdMemberList.DataSource = dt.Rows.Cast<DataRow>().Take(30).CopyToDataTable();
but I need with DataSet.Thanks in advacne.