PeterRock
PeterRock

Reputation: 23

ADO.NET Entity Framework

I have little bit knowledge on Entity Framework.As we can do almost all operations using MS Application Block,What are the benefits do we gather using Entity Framework ?

Upvotes: 1

Views: 171

Answers (1)

Justin Niessner
Justin Niessner

Reputation: 245479

MS Application Blocks are meant to help you add standard functionality to your applications without hand-rolling the code yourselves.

The Entity Framework is an ORM (Object-Relational Mapper) that is meant to make mapping the data in your database to Objects in your code seamless.

Two completely seperate tools.

Upvotes: 1

Related Questions