Hi all
i am developing web apps using C# and asp.net 2.0. I am using framework 2.0
i have two datatables both of them are having equal no. of columns namely EmployeeId,Designation and Remarks. Tables are T1 and T2. I want to have records from both of them and need to store in a new datatable. I have the following query which actually needs to be used here:
Code:
select a.empno,b.designation,b.remarks from t2 a left outer join t1 b
on a.empno = b.empno
Please throw some light how to do it in C#/ado.net