JimDel
JimDel

Reputation: 4359

Is ADO.NET 4 the same as Entity Framework 4?

Is ADO.NET 4 the same as Entity Framework 4? I'm looking for a book on Entitry Framework and saw this Title. Not sure if what I'm looking for though.

Thanks

Upvotes: 1

Views: 379

Answers (3)

Morteza Manavi
Morteza Manavi

Reputation: 33216

No, it's not. Entity Framework is an ORM that has been built on the top of ADO.NET. Although the book you've mentioned has a small chapter on EF, but its main focus is on ADO.Net basis and its core classes.

If you are looking for a book on EF, then don't miss this GREAT book, it's all you need:

alt text

Upvotes: 4

Oren A
Oren A

Reputation: 5890

Here's how MSDN defines the relationship between them:

The Entity Framework is a set of technologies in ADO.NET that support the development of data-oriented software applications.

Source

Upvotes: 1

Ian Mercer
Ian Mercer

Reputation: 39277

The official name for "Entity Framework" is "Microsoft ADO.NET Entity Framework".

A book on ADO.NET 4 should include information about Entity Framework 4 but you might be better off with a book focused solely on the topic.

Upvotes: 2

Related Questions