adscnet
adscnet

Reputation: 5

Updating EF5 to EF6 Error

I've updated my app EF from 5 to latest release EF6, since I'm using CF approach, I think all required changes in the imports has been automatically changed during the update .. fine.

But other parts has been spoiled like, (1) when I run Asp.net Configuration from VS12 it raises this error

[Method not found: 'System.Data.Objects.ObjectContext System.Data.Entity.Infrastructure.IObjectContextAdapter.get_ObjectContext()'.]

(2) I'm using the login wizard form which in the VS12, this one also not working anymore.

Any idea what I need to change to solve this.

Upvotes: 0

Views: 819

Answers (1)

marino-krk
marino-krk

Reputation: 2761

Maybe this can help : http://msdn.microsoft.com/en-us/data/dn469466

Namespace changes :

System.Data.Objects.ObjectContext => System.Data.Entity.Core.Objects.ObjectContext

Upvotes: 1

Related Questions