I have a list of Dictionaries, like so: IEnumerable<IDictionary<string, object?>>
I would like to get all values (object) from said list of dictionary, where Key = "Language"
How can I do this using LinQ, without iterating through all of my list?
Thank you a lot in advance