Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get DBContext from ObjectContext

I'm using the latest versions of ASP.NET MVC, SQL Server, and Entity Framework. I am not using code first.

I can easily create an object context using the class generated by my EDMX file.

But is there any way to obtain a DBContext object from that class? I would like to use its extended features.

like image 251
Jonathan Wood Avatar asked Jan 27 '13 22:01

Jonathan Wood


1 Answers

You can add a code generation item for a DbContext. Right-click on the design surface of the edmx and choose "Add code generation item" and select DbContext Generator from the Add New Item dialog (you may have to look in online templates). This will create a t4 template that generates a DbContext.

If you want to keep working with the ObjectContext API, but sometimes want to switch to DbContext you can create a DbContext with the constructor accepting an ObjectContext as parameter.

like image 132
Gert Arnold Avatar answered Sep 22 '22 08:09

Gert Arnold