I need to convert a DataRow to a dictionary using LINQ.
The code below will receive a DataRow, the next step - I need to convert it to a dictionary (ColumnName, RowVale)
var WorkWeekData = from data in mWorkWeekData.AsEnumerable () where data.Field<string> ("Code") == code select data;
source share