DbSet.Load() function missing in EF 6.0

后端 未结 4 880
名媛妹妹
名媛妹妹 2021-02-12 02:52

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

4条回答
  •  忘了有多久
    2021-02-12 03:17

    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.

提交回复
热议问题