I am using Visual Studio 2012.
In my C# project, I have used a typed DataTable class, which uses the dynamic keyword in a few method implementations (Handcrafted Strongly Typed ADO.net DataTable - Can it be cleaner?).
While debugging, I am not able to use the edit and continue feature. I get the error:
"Modifying a 'method' which contains a dynamic invocation will prevent the debug session from continuing while Edit and Continue is enabled."
I have read other similar threads, which mention to set EmbedInteropTypes to false in all referenced assemblies. But in my case, they are already set to false. I found this issue reported for VS2010 as well on the net; is it not fixed as of VS2012?