I have a question about Linq / Lambda and the following issue:
I have two dictionaries, primary and secondary... These two dictionaries are defined as Key=string, Va
If you want to select out an object with the "value" of both dictionaries, because that what you probably want, the you can try something like this. Assuming that the keys for both dictionaries are the same i.e. that map each together, like a GUID between two systems
dictA.Keys.Intersect(dictB.Keys).Select(x => new MyMappingClass
{
dictAValue= dictA[x], dictBValue= dictB[x]
})