The latest version of Breeze supports EF6. What does it take to migrate a Breeze project to use EF7?
As my project currently uses EFContextProvider, I think I have to move back and rely on DbContext instead. Does this mean I have to implement a replacement for EFContextProvider to use the latest version, or is there a way to get the current EFContextProvider version to use EF7's DbContext?
EF7 is a rewrite of Entity Framework. This means that there are many, many breaking changes. No existing EF6 components will work with EF7. Even the namespace of DbContext has changed. To read more about the decision to call it EF7 instead of giving it a new name, read EF7 – v1 or v7?