1. I've installed EntityFramework through nuget (should I do this for every project? Or can I just reference the assemblies? Where are they 'installed'? Sorry new to nuget)

  2. I add a new "Ado.NET Entity Data Model" to my project and import tables from the database. However the context is added as ObjectContext not as the latest DbContext as I would presume. Am I missing something here?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
  1. Yes, install the package for each project. The assemblies are installed in a packages folder in the solution folder.
  2. The ADO.NET Entity Data Model is for Database First. Read an explanation of Database First vs. Model First vs. Code First here:

http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application

link|improve this answer
I'm working database first, does this mean I cannot generate an DbContext object and work with EntityFramework 4.1 and up? – ReFocus Feb 22 at 23:01
It looks like I need a Entity Data Model (edmx) file open in the designer. From there I need to "Add an item" and select "DbContext generator". What's up with this 'connection' between the two? DbContext cannot live without ObjectContext and related entities? – ReFocus Feb 23 at 9:21
If you want to use the DbContext without an .edmx, you can use the EF Power Tools, which is only in CTP now: visualstudiogallery.msdn.microsoft.com/… – tdykstra Feb 23 at 18:14
feedback

A great place to start is http://asp.net. Read the tutorials. They cover data access with EF for both WebForms and MVC.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.