After upgrading our project from using Entity Framework 5 to Entity Framework 6 (though NuGets update function) i get the following error on my generated Entities class:
Error 1 The type or namespace name 'Objects' does not exist in the namespace 'System.Data'
(are you missing an assembly reference?)
I understand that this is because the namespace has changed and i can manually fix the error by changing my imports from:
using System.Data.Objects;
and using System.Data.Objects.DataClasses;
To:
using System.Data.Entity.Core.Objects;
However the file is generated so i need to reapply this fix after every Update model from Database
.
Is there something extra to change to get EF to generate the model without this error.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…