I used Nuget to upgrade to Entity Framework 5.0.0-beta2 in my MVC3 → MVC4 project.
I'm trying to get enums to work, and every hyphen I add just ignores the enum fields.
I found this in the web.config file:
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
How to get this link in EF5?
Is that what I need for enums to work?
source
share