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

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

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.

link|improve this answer
yes. that does it. thanks – Gullu Oct 19 '11 at 19:10
+1 for remembering to cast out of dynamic. – Adam Maras Oct 19 '11 at 19:25
Dynamic is nice, but it does have a lot of traps like needing casts back to static types. – Joshua Rodgers Oct 19 '11 at 19:30
feedback
if (results != null)
{
    return results.ToDictionary(x => x.StudentID, x => x.StudentName);     
}
link|improve this answer
I knew this was not that simple. Error 1 Cannot implicitly convert type 'System.Collections.Generic.Dictionary<dynamic,dynamic>' to 'System.Collections.Generic.Dictionary<string,string>' – Gullu Oct 19 '11 at 18:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.