how to convert Dictionary<dynamic, dynamic> to Dictionary<string, string> using Colllection.ToDictionary()

4.9k views Asked by At

I am using Dapper to fetch a 2 column resultset into a dictionary. I noticed that intellisense shows me a .ToDictionary() when I hover over the resultset but I cannot get it to work since dapper uses dynamic properties/expandoObject

Dictionary<string, string > rowsFromTableDict = new Dictionary<string, string>();
using (var connection = new SqlConnection(ConnectionString))
{
   connection.Open();
   var results =  connection.Query
                  ("SELECT col1 AS StudentID, col2 AS Studentname 
                    FROM Student order by StudentID");
    if (results != null)
    {
    //how to eliminate below foreach using results.ToDictionary()
    //Note that this is results<dynamic, dynamic>
         foreach (var row in results)
         {
              rowsFromTableDict.Add(row.StudentID, row.StudentName);
         }
         return rowsFromTableDict;
     }
}

thank you

2

There are 2 answers

1
Joshua Rodgers On BEST ANSWER

Try:

results.ToDictionary(row => (string)row.StudentID, row => (string)row.StudentName);

Once you have a dynamic object, every thing you do with it and the corresponding properties and methods are of the dynamic type. You need to define an explicit cast to get it back into a type that is not dynamic.

1
Darin Dimitrov On
if (results != null)
{
    return results.ToDictionary(x => x.StudentID, x => x.StudentName);     
}