8

Dapperを使用して、2列の結果セットを辞書にフェッチしています。結果セットにカーソルを合わせると、インテリセンスに.ToDictionary()が表示されることに気付きましたが、dapperは動的プロパティ/ 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;
     }
}

ありがとうございました

4

2 に答える 2

14

試す:

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

動的オブジェクトを取得すると、それで行うすべてのこと、および対応するプロパティとメソッドは動的型になります。動的ではない型に戻すには、明示的なキャストを定義する必要があります。

于 2011-10-19T19:01:47.533 に答える
-1
if (results != null)
{
    return results.ToDictionary(x => x.StudentID, x => x.StudentName);     
}
于 2011-10-19T17:31:25.427 に答える