Hello,
How can i store dictionary column data from data table by using for each row in data table activity in a variable?
getting compiler error: cannot convert object to dictionary
Thanks
Hello,
How can i store dictionary column data from data table by using for each row in data table activity in a variable?
getting compiler error: cannot convert object to dictionary
Thanks
Assuming mainfestDetailsRow
is your dictionary variable, do this way:
mainfestDetailsRow("Your Key you wanted") = CurrentRow["mainf......
hello,
actually i want whole dictionary data as it is in a variable
Ok in that case you can try this expression.
dictionaryVariable = DataTable.AsEnumerable().ToDictionary(Function(row) row("ColumnName").ToString(), Function(row) row("ColumnValue").ToString())