从 IEnumerable<Dictionary<string、object>> 中获取键和值



我有一个 IEnumerable < Dictionary < string, object > > 对象。

我想在数组中获取"aaavalue"bbbvalue"cccvalue"dddvalue"。

示例数据:

IEnumerable<Dictionary<string, object>> testData = new IEnumerable<Dictionary<string, object>>();
/* Values in testData will be like
   [0] - 
         aaa - aaaValue   (Key, Value)
         bbb - bbbValue
         ccc - cccValue
         ddd - dddValue  
   [1] - 
         aaa - aaaValue   (Key, Value)
         bbb - bbbValue
         ccc - cccValue
         ddd - dddValue  
    and so on */

我知道使用反射或LINQ是可能的。但我无法弥补。

请帮忙..

答:

IEnumerable<Dictionary<string, object>> enumerable = testData as List<Dictionary<string, object>> ?? testData .ToList();
foreach (Dictionary<string, object> objects in enumerable)
{
    IEnumerable<object> values = objects.Select(x => x.Value); // To get the values.
    IEnumerable<string> keys = objects.Select(x => x.Key); // To get the keys.
}

尝试:

IEnumerable<object> values = testData.SelectMany(x => x.Values);

最新更新