Newbie Developer
Newbie Developer

Reputation: 125

Entity Framework without creating .edmx

Hi is Entity Framework 4 really need to generate .edmx or not ?

Thanks in Regards

Upvotes: 2

Views: 5130

Answers (3)

Kevin LaBranche
Kevin LaBranche

Reputation: 21088

Here's a nice set of articles to help get you familar with Entity Framework Code First.

Just a few nice to knows for you also:

The latest version of Entity Framework 4.1 comes with Code First (use to be separate).

With the latest MVC3 tools update, the latest version of Entity Framework is included as part of the MVC3 template. Makes it a tad faster for getting going.

You can install the latest Entity Framework 4.1 with NuGet using install-package EntityFramework.

Upvotes: 0

AnteSim
AnteSim

Reputation: 1305

No, you can use the Code First approach:

http://msdn.microsoft.com/en-us/data/gg685467

Upvotes: 4

ozczecho
ozczecho

Reputation: 8859

No Version 4.1 supports "Code First Development". Means you can define your Db by annotating your entities or using a Fluent API.

Upvotes: 1

Related Questions