I am Looking for a cleaner way to perform the following operation:
Filter out distinct values from a dictionary of type Dictionary<T,IEnumerable<T>
> , based on the uniqueness of the Value (i.e. unique by one of the attributes of T in the IEnumerable<T>
).
We can ignore the key on the dictionary. Can someone suggest a good way of achieving the above ?