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!

link|improve this question
Ok, so this was clearly a noob-question. Apparently these pieces of codes are nothing more than indicators that it was generated with .Net 4.0, but the edmx was and is still 3.5. So the edmx is fully compatible and supports changes/updates without problems. The error was in the connectionstring that somehow got altered ;) – LaTiNo Feb 15 at 12:43
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.