I have two DataTables dt1 and dt2. Each table have different data in them but they have a common column ReportID.
Is there a way of joining the datatables similar to a SQL Inner Join?
I have tried using DataRelation but it didn’t work
Thanks
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 could load your data tables into a DataSet and then you are free to create relations and query the data.
http://msdn.microsoft.com/en-us/library/ss7fbaez.aspx
Hope this helps