문제

I'm new to entity framework. I've got EF 4.2, from NuGet. Now I'm hearing it would be good to get DbContext. I've got into the extension manager and tried finding it, but I see about 8 there. Which is the "righ" one? I don't know if this matters but I use both C# and VB.NET. Also, I don't know if this matters or not, but I'm using a data-first model, not a code-first or model-first models, for doing EF development.

도움이 되었습니까?

해결책

On your EDMX design surface, right-click and pick Add Code-Generation Item:

enter image description here

Pick the ADO.NET DbContext Generator from the online gallery:

enter image description here

This adds two T4 template files (*.tt) in your solution explorer, and generates the DbContext and the entity classes for you:

enter image description here

And this is the resulting class derived from DbContext for your own project:

enter image description here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top