Get dictionary data from for each row in data table

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

@nikhil.chandre,

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

one column is dictionary data type

@ashokkarale

@nikhil.chandre

Ok in that case you can try this expression.

dictionaryVariable = DataTable.AsEnumerable().ToDictionary(Function(row) row("ColumnName").ToString(), Function(row) row("ColumnValue").ToString())