EF 6 System.Data.Objects.ObjectContext Error

前端 未结 10 668
孤独总比滥情好
孤独总比滥情好 2020-12-03 09:40

I recently upgraded from Entities Framework 5 to Entities Framework 6 Alpha 2 and I am getting the following error:

Method not found: \'System.Data.Ob

10条回答
  •  无人及你
    2020-12-03 10:19

    For me updating these below worked:
    using System.Data.Objects; --> using System.Data.Entity.Core.Objects;

    using System.Data.Objects.DataClasses; --> using System.Data.Entity.Core.Objects.DataClasses;

提交回复
热议问题