public IDictionary<IContextType, IDictionary<string, string>> MasterScopeVariablesTable
= new Dictionary<IContextType, IDictionary<string, string>>();
I have a keyed dictionary of dictionaries. I would like to use LINQ to query the LAST entry from any dictionary that contains the "key" with name "State". The dictionaries have some of the same keys with different values.
Similar to this link Query a Dictionary of Dictionaries?
But this can be done in a single call without a foreach loop, does anyone know how?