Hi,
I am having 2 datatables, one is having data of queueitems which has status as new and one datatable is having data which i need to push to queues. But before pushing, i want to compare both datatables to avoid adding duplicates. For that i am using dtQuery.AsEnumerable().Except(dtInputQueue.AsEnumerable(),DataRowComparer.Default).CopyToDatatable
to find uncommon data. But still it is adding duplicates. Please Help