Linq query Exception

Hi @Sasikanth ,

try below one

(from row in dt1.Select where (from item in dt2.Select where item("Employee Code").ToString.Equals(row("Employee Code").ToString) select item).ToList.Count>1 select row).ToList.CopyToDataTable()

Regards,
Arivu