views:

66

answers:

2

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 ?

A: 

Try searching through this resource. This question was raised to many times... boring.

Restuta
Not a useful answer
Jeremy
Agreed, but answering on the same questions for people who can't use search is really boring.
Restuta
+1  A: 

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.

Justin Niessner