I have inherited a project which makes use of .Net 3.5 with EF 1.0 (or 3.5, still don't know the official version number).
I am using VS2010 (VB.Net) and in the properties I set the target to be .Net 3.5. In my references I have System.Data.Entity version 3.5.
Now, whenever I update the edmx file VS changes my edmx file (or at least the coupled autogenerated xxx.designer.vb) to version 4.0!
I get stuff like this inserted:
<Global.System.CodeDom.Compiler.GeneratedCode("System.Data.Entity.Design.EntityClassGenerator", "4.0.0.0")>
As I can't find anything online and I am running in "desperate mode" now I tried to remove all these pieces of code manually, hoping it would work, but I only suffer other errors.
I also tried creating an all new edmx-file, but that one also is converted to 4.0, even though the target is 3.5.
Does anyone have any idea how I can enforce the edmx to remain EF1.0 compliant?
Thanks in advance!