I have a data structure defined as:
Dictionary<Guid, List<string>> _map = new Dictionary<Guid, List<string>>();
I'm trying to create a lambda expression that given a string, returns a IEnumerable of Guids associated with any List<string>
containing that string.
Is this reasonable/possible or should I use a more appropriate data structure?
Thanks in advance!
Kim