Upgrading to Entity Framework 6 from Entity Framework 5 (mixing and reconciling within a solution)

I have a great solution with several Entity Framework subprojects.

Let's just say that I have

MySolution (currently all EF 5)

  • ProjectUi, which links to all three below
  • ProjectData1.EF (which uses Entity Framework 5)
  • ProjectData2.EF (which uses Entity Framework 5)
  • ProjectData3.EF (which uses Entity Framework 5)

Now the real solution has a lot more changes than that.

I am wondering if I can upgrade ProjectData1.EF to Entity Framework 6 and leave the rest with Entity Framework5, or do I need to do everything in one go.

So then there will be

MySolution (there will be a combination and a coincidence)

  • ProjectUi, which links to all three below
  • ProjectData1.EF( Entity Framework 6)
  • ProjectData2.EF( Entity Framework 5)
  • ProjectData3.EF( Entity Framework 5)
+4
1

, EntityFramework.dll ProjectUI.

0

Source: https://habr.com/ru/post/1524559/


All Articles