Hello everyone,
I am fetching some data from a csv file in a workflow and then storing that data into a list of dictionary like below:
System.Collections.Generic.List (Of System.Collections.Generic.Dictionary (Of String, Object))
[{“LineNo”, 1, “UnitCost”, 123}, {“LineNo”, 2, “UnitCost”, 456}]
Now for taking out the value from this workflow I am storing that list of dictionary in the Transaction Item dictionary like below:
inout_TransactionItem.SpecificContent(“ListOfDict”) = As above.
Now the problem is in retrieving that from the Transaction Item dictionary, as you know it gets stored as an object. I need the items stored in the list of the dictionary.
Any help highly appreciated! Just an FYI, I know I can take the list as an out argument from the workflow but I am bound to some standards.