I have a Dataset containing one DataTable and that table got 3 columns (Column1,Data,Column2) & multiple data-rows.
I also have a dictionary which contains list of values that I need to search within DataColumn and the values with which I should replace the original values.
I want to search with-in the column whose name is 'Data'.
Following image contains the original data table and the resultant DataTable along with dictionary which contains keys and values which needs to be searched and replaced.
What is the most efficient way to perform this operation?