ASP.NET using C#.NET; .NET3.5
I've two datatables as below:
DataTable1:
Location Visa_Q1 Visa_Q2
Blore 25 40
Hyd 40 60
DataTable2:
Location Visa_Q3 Visa_Q4
Blore 50 35
Hyd 80 90
How to combine both datatables for getting the output as DataTable as below using LINQ (without looping each row):
CombinedDataTable:
Location Visa_Q1 Visa_Q2 Visa_Q3 Visa_Q4
Blore 25 40 50 35
Hyd 40 60 80 90
EDIT:
Just by joining two tables based on matching 'Location' i want the resultant data in combined form. I don't want to select each column field manually as select new { .... };

DataTablesfrom? You'll need to modify that code if you want to avoid looping - LINQ to Objects just uses loops internally. – Douglas Jan 8 '12 at 16:08