I have a requirement for which i need to implement linq query , i am sharing the requirement below :
I have 2 data tables dt_invoice&Comments , and dt_master
first data table dt_invoice has invoce numbers lets say A101,A102,A103 etc. in invoice column and second column for the dt_invoice&comments has comments.
I need to search each invoice of dt_invoice&comments in dt_Master data table , whenever a match found in second data table i.e, dt_master, i have to update a cell value for found invoice in the dt_master, this cell value is nothing but the comment we have in dt_invoice&comments for the respective invoice.
Can someone suggest how to build linq query for the same.