You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
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.
The text was updated successfully, but these errors were encountered: