I want to return a dataset filter from a static dataset.
Is it possible.?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can filter Rows, by DataTable.Select function
Also You can get filtered DataSet by setting RowFilter property like this
Look here for other ways to do filtering
But all of this methods does not create new DataSet with filtered data, if you need it , you should copy filtered rows manually I guess…