EF 6.0 support
Opened this issue · 1 comments
Are you planning on adding support for EF 6.0? You can get an alpha package from nuget right now.
I tried modifying the code to support EF 6.0, but the problem is that EF 6.0 requires you to remove references to System.Data.Entity.dll and System.Data.Entity.Design.dll because they're not compatible with the newest EntityFramework.dll. The types from System.Data.Entity.dll all exist inside EntityFramework.dll, you just have to modify some namespaces. However, I can't find a replacement for the types you use in System.Data.Entity.Design.dll.
Yes, we plan on supporting EF 6 in the first commit we make once it goes live. As you noticed, we rely on some parts of the EF API that are changing in the EF 6 release. We are hoping that as the tooling around EF 6 matures, the appropriate API classes will be exposed.