I have a list of objects with a structure
string source, string target, int count
Sample data:
sourcea targeta 10 sourcea targetb 15 sourcea targetc 20
My other list of objects with structure
string source, int addnvalueacount, int addnvaluebcount, int addnvalueccount
Sample data:
sourcea 10 25 35
I want to change the second list to the first list structure, and then make concat all the first list.
Thus, the result should look like this:
sourcea targeta 10 sourcea targetb 15 sourcea targetc 20 sourcea addnlvaluea 10 sourcea addnlvalueb 25 sourcea addnlvaluec 35
All help is truly appreciated.
thanks
source share