Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Updating my EF model to use 4.1 when I built it in 4.0

I built my EF Model in EF 4.0, and then installed the 4.1 upgrade that includes the new DBContext interface. How do I update my model so that it uses the 4.1 features going forward?

Thank You

like image 442
Ben Finkel Avatar asked Apr 14 '11 17:04

Ben Finkel


1 Answers

You can use DbContext with your EDMX model. After installing EFv4.1 you should have new T4 template available: DbContext generator. This will take your EDMX and create context derived from DbContext and all POCO entities for you. Here you have walkthrough.

But if you want to switch to DbContext just because of DbContext.Entry.State you don't have to. EFv4 has a similar mechanism:

context.ObjectStateManager.ChangeObjectState(entity, EntityState.Modified);

Here is the full description how to update an entity in EFv4.

like image 140
Ladislav Mrnka Avatar answered Sep 28 '22 09:09

Ladislav Mrnka