Question

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.

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top