bovium
bovium

Reputation: 2937

What is the best starting point on the Entity Framework from MS?

Please give me the direction of the best guidance on the Entity Framework.

Upvotes: 0

Views: 632

Answers (2)

YeahStu
YeahStu

Reputation: 4052

There is a list of some tutorials available in this question.

This is a useful Entity Framework forum.

For me, the most useful reference for learning about the Entity Framework when I started using it was Daniel Simmons' FAQ. Check it out!

Upvotes: 2

Marc Gravell
Marc Gravell

Reputation: 1062502

Mike Taulty has a series of blog entries here that would be worth reading. But first - make sure you really, really want the complexity of EF; NHibernate, LINQ-to-SQL, etc make better answers in many cases. There are a number of issues with the EF approach (not least the forced base class and the much moire complicated xml - barely comprehensible).

I'm not saying don't use it: just make sure you need what it offers (at the price of complexity) first...

Upvotes: 2

Related Questions