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