Pergunta

After uptade Entity framework any version to Entity Framework in existing project in MYDATABASE.edmx When I update model from database Visual studio generates using lines such as

  using System.Data.Objects;   
  using System.Data.Objects.DataClasses;

but Here is should be:

using System.Data.Entity.Core.Objects;
Foi útil?

Solução

1.Open MYDATABASE.Context.tt (Your code generation template) (Under the MYDATABASE.edmx)

2.Find invalid references like this

{
#>
using System.Data.Objects;   
using System.Data.Objects.DataClasses;
using System.Linq;
<#
}

3.Replace like this

{
#>
using System.Data.Entity.Core.Objects;
using System.Linq;
<#
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top