Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I Googled to find tutorials and documentation on Entity Framework and read a couple of articles too. I referred to MSDN documentation also, but still I am not able to understand it clearly.

With a little that I followed is that:

(1) Each table along with rows are considered as a single unit.

(2) It provides a solution to sudden table name change without affecting the application.

(3) It reduces a lot of code.

Can someone explain me in a more easy way with illustrations? Please don't be too technical.

share|improve this question
1  
Check out ef-faq.org - it is a new site just created by Danny Simmons with lots of links to EF resources... – KristoferA - Huagati.com Nov 8 '10 at 3:06

1 Answer

up vote 1 down vote accepted

Check out:

It's rather hard to find something that's not too technical and just shows nice graphical representations.

But basically you have three "layers" inside an EF model:

  • the physical database model - what tables and columns do you have?
  • the conceptual model - the business objects / entities you want to work with (which can be very similar or quite different from your physical model)
  • the mapping layer that defines the mappings between those two worlds
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.