Domanda

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;
È stato utile?

Soluzione

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;
<#
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top