I am trying to access the DbSet.Load() function to load the entities. This function no longer exists in EF 6.0; upon certain investigation I foun
DbSet.Load()
In EF6 the class containing extension methods was renamed from DbQueryExtensions to QueryableExtensions but the .Load() method is still there. If you are not calling this extension method directly the rename should not matter to you.
.Load()