简体   繁体   中英

EDMX .NET 4.5 to 4.0?

We're using the Entity Framework and we created our EDMX when our project was set to build .NET 4.5. Now we want to switch to .NET 4.0 but when we do, we get compilation errors for the EDMX file.

It states the following error:

Error 10027: The XML namespace for the conceptual model's schema element is not supported on this project's target framework version.

Is there any solution other than recreating the EDMX file?

Assuming you don't use features that shipped with .NET Framework 4.5 (enums, spatial types, stored procs with multiple result sets) you can do the following (be sure to back the file up just in case):

  • Create a new console app targeting .NET Framework 4.5
  • Add the edmx file to the project
  • Retarget the project to target .NET Framework 4 (go to project properties, change target framework version)

This should result in downgrading your edmx to v2.

Alternatively you could manually change xml namespaces and versions to v2. You can find what namespace to use for each version of the artifact here:

Edit Note that with EF6/EF6.x you can use Edmx v3 on .NET Framework 4 and therefore get all the goodnes (like enums) that was before only available on .NET Framework 4.5

For what its worth I switched the target framework back to 4.5, recompiled the solution, got a bunch of errors, switched it back to 4.0 and got the message:

"Successfully rebuilt the edmx for the new target framework"

From there I was able to recompile without any namespace errors shrug

Note for those on VS 2012 there is a separate install that's required if you want to keep a .Net 4 project on edmx v3. Entity Framework 6 Tools for Visual Studio 2012 – Jeff Jan 27 at 2:09

The above comment from Pawel's answer fixed my problem. I am copying it out into its own answer so that people can find it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM