LINQ sélectionnez en C# dictionnaire

J'ai à côté de 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 toutes "valueTitle" avec l'aide de LINQ choisir?

Mise à JOUR:
Désolé, je devrais l'écrire d'abord - j'ai besoin d'obtenir le résultat de exitDictionary, pas de sous-liste

  • Ce serait plus facile à comprendre si vous avez utilisé des classes au lieu de dictionnaires. Juste pour dire.
InformationsquelleAutor user2944829 | 2013-11-01