LINQを使用して1つの行を辞書に変換しようとしました(fieldName-> fieldValue)
return Enumerable.Range(0, reader.FieldCount)
.ToDictionary<string, object>(reader.GetName, reader.GetValue);
しかし、私はエラーメッセージを受け取りました:
'System.Collections.Generic.IEnumerable<int>'
インスタンス引数:からに変換できません'System.Collections.Generic.IEnumerable<string>'
これを修正する方法は?