web-dev-qa-db-fra.com

Dictionnaire LINQ select in C #

J'ai le prochain dictionnaire en C #

Dictionary<string, object> subDictioanry = new Dictionary<string, object>();

List<Dictionary<string, string>> subList = new List<Dictionary<string, string>>();

subList.Add(new Dictionary<string, string>(){
    {"valueLink", "link1"},
    {"valueTitle","title1"}
});
subList.Add(new Dictionary<string, string>(){
    {"valueLink", "link2"},
    {"valueTitle","title2"}
});
subList.Add(new Dictionary<string, string>(){
    {"valueLink", "link3"},
    {"valueTitle","title3"}
});

subDictioanry.Add("title", "title");
subDictioanry.Add("name", "name");
subDictioanry.Add("fieldname1", subList);

Dictionary<string, object> exitDictionary = new Dictionary<string, object>();
exitDictionary.Add("first", subDictioanry);
exitDictionary.Add("second", subDictioanry);

Est-il possible d'obtenir tous les "valueTitle" à l'aide de LINQ select?

UPDATE: Désolé, je devrais l'écrire d'abord - je dois obtenir le résultat de exitDictionary, pas de subList

22
user2944829

Si vous recherchez par le fieldname1 valeur, essayez ceci:

var r = exitDictionary
   .Select(i => i.Value).Cast<Dictionary<string, object>>()
   .Where(d => d.ContainsKey("fieldname1"))
   .Select(d => d["fieldname1"]).Cast<List<Dictionary<string, string>>>()
   .SelectMany(d1 => 
       d1
        .Where(d => d.ContainsKey("valueTitle"))
        .Select(d => d["valueTitle"])
        .Where(v => v != null)).ToList();

Si vous regardez par le type de la valeur dans le subDictionary (Dictionary<string, object> explicitement), vous pouvez faire ceci:

var r = exitDictionary
   .Select(i => i.Value).Cast<Dictionary<string, object>>()
   .SelectMany(d=>d.Values)
   .OfType<List<Dictionary<string, string>>>()
   .SelectMany(d1 => 
       d1
        .Where(d => d.ContainsKey("valueTitle"))
        .Select(d => d["valueTitle"])
        .Where(v => v != null)).ToList();

Les deux alternatives reviendront:

title1
title2
title3
title1
title2
title3
21
Alex Filipovici

Une solution serait de commencer par aplatir la liste avec un SelectMany:

subList.SelectMany(m => m).Where(k => k.Key.Equals("valueTitle"));
9
Arran

Cela retournera toutes les valeurs correspondant à votre clé valueTitle

subList.SelectMany(m => m).Where(kvp => kvp.Key == "valueTitle").Select(k => k.Value).ToList();
4
gleng