I have some existing code which uses wpf and databinding for the gui. When using the code it works fine, it consist of several menu where you can view pictures and other stuff, and this is done by using databinding. No problem there! But I would like to add more functionality by using Enity framework, and thereby .NET 4.0. I have found that I need to add the following to my app.config, in order to keep the original assemblies(3.5 and lower)
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
</startup>
But when I add this, it affects the databinding and intermittently does not show the correct pictures when shifting through menus and stuff. Remove it and it works fine again.
I have been reading a bit about this, but still no where near a solution
Any ideas or suggestions?