Entity Framework - Simplified by Mohd Manzoor Ahmed - HTML preview

PLEASE NOTE: This is an HTML preview only and some elements such as links or page numbers may be incorrect.
Download the book in PDF, ePub, Kindle for a complete version.

Chapter 1: Introduction to Entity Framework

Few Necessities Of New Data Access Technology Entity Framework:

 Want easy and automated way of mapping between Objects (Classes) and Relations

(Tables).

 Want to eliminate the need for most of the data-access code that developers usually

need to write.

 Want to write pure objects, less code and simplify the process of updating the

database.

 Want layer of abstraction between your Application and Database.

 Want to write C# language syntaxed queries to work with any database with full

intellisense support for columns and tables name.(Strongly Typed)

 Want to make database independent apps.