I am looking for an expression or a cleaner way to achieve this.
Scenario:
I have two dictionaries (both are String,Object). There may or may not be common Keys. I want to merge Dict1 => Dict2 but if the Key exists in Dict2 then skip that value.
Dict1
First: John
Last: Smith
Age: 40
Eye: Blue
Dict 2
Country: Australia
Vehicle: Yes
Age: 45
Final Dict2
First: John
Last: Smith
Age: 45 (common value but Dict2 value remains).
Eye: Blue
Country: Australia
Vehicle: Yes