I know based on several articles from MSDN that you simply add:
this.Configuration.LazyLoadingEnabled = false;
this.Configuration.ProxyCreationEnabled = false;
In the context.cs file that accompanies the EDMX file or edit context.tt file to have those lines added when you regen the edmx files.
However, I have noticed that when the database fields change (specifically deleting them), and the ADO.NET files are replaced, the changes have to be remade. Is there a place I can permanently add those lines to be included with my context.cs file when I have to recreate the ADO.NET files?
I did notice that this article on SO is close to this issue, but no where near: