In the above tables
I need to compare description of dt1 with dt2.and if matches any then return dt2 columns of
Issue id, description,issue assigned to.
Can any one help me to achieve this using linq query.
For Common Values
dt = dt1.AsEnumerable().Intersect(dt2.AsEnumerable(),System.Data.DataRowComparer.Default).CopyToDataTable
For Uncommon Values
dt = dt1.AsEnumerable().Except(dt2.AsEnumerable(),System.Data.DataRowComparer.Default).CopyToDataTable
(
From a In DT1
Join b In DT2
On a(“Discription”).ToString Equals b(“Issue_ID”).ToString
Select Out_DT.Rows.Add({a(“Discription”),a(“Date”),b(“Issue_ID”),b(“Issue Assigned To”)})
).CopyToDataTable
I want all the columns of dt 2,without mentioning column name,because column name some time changes and it’s have lot of columns.here I have shown only example.