Title: ADO.NET Entity Framework
1ADO.NET Entity Framework
Deyan Varchev
General Manager Avaxo Ltd.
2What Is It?
- The ADO.NET Entity Framework is part of
Microsofts next generation of .NET technologies. - It is intended to make it easier and more
effective for object-oriented applications to
work with data.
3The Problem Being Addressed
- Inherit differences between data expression in a
relational database and the same data expressed
in an object-oriented application.
4The Logical Data Model
- Almost any business application today has to
speak to a relational database. - This involves the usual suspects of tables with
foreign keys, a smattering of views, and
generally a gob of stored procedures.
5The Object-Oriented Domain Model
- Applications themselves are written in a
completely different world. - The same data that lives in the relational
database is represented entirely differently in
the application.
6The Result
- The result of this impedance mismatch is that
developers devote a lot of time and energy
writing code to translate between how the
database likes to see data and how the
application likes to see data.
7Other Ways to Address The Same Problem
- Hibernate (Java)
- Enterprise Objects Framework (Mac OS)
- NHibernate (.NET)
- LINQ to SQL (Visual Studio 2008)
- And many, many, more
8The ADO.NET Entity Framework
- The ADO.NET Entity Framework seeks to remedy the
problem by providing a layer of abstraction
between the logical data model and the
application domain.
9Why the Entity Model?
- Closer to the application problem space
- Better suited for object oriented programming
- Supports Inheritance
- Supports complex types
- Relationships are more meaningful to the
application
10The Stuff in ADO.NET Entity Framework
- The tools and technology that developers will
interact with when using the ADO.NET Entity
Framework
11Entity Data Model
- A gob of XML that defines
- Logical Data Tables, Views, Foreign Keys
- Entity Objects that Map to the Logical Data
- The Mapping Between the Two
12Entity Data Model Designer
- A Visual Studio Designer that protects developers
from the XML that is the EDM
13ObjectContext
- A code-generated data context created from the
Entity Data Model - Responsible for managing communication between
the conceptual data model and the logical data
model
14Entities
- Code-generated class definitions for objects
defined in the EDM.
15Getting the Data Out
- How do we get data out of the fancy Entity Data
Model?
16eSQL (Entity SQL)
- A brand new SQL language to learn
- Leverages the rich, object-oriented Entity Data
Model - Inheritance
- Collections
- Complex Types
- Literal Strings No Compiler Checking
- Questionable value in embedded SQL in code
17Extensions Methods and String Predicates
- Queries the object model created against the EDM
- Still string-based. No compiler checking
- An ugly mix of code and eSQL statements
18LINQ to Entities
- Full compiler checking. No wondering if the
query is valid. - A fun new SQL-Like syntax
- More OO-ish
19What Can You Do?
- The power of the Entity Data Model contrasted to
a logical data model of tables and stored
procedures.
20Combine Multiple Logical Tables into One Entity
21Implement Inheritance
22Other Fun Stuff
- Implement Complex Types (e.g. Address)
- Consume Conceptual Model with Reporting Services
and other BI Tools - Create an EDM that talks to stored procedures
- Use transactions, manage concurrency, cache
execution plans
23Manipulate Data By Manipulating Objects
Database Result Desired EDM Object Manipulation
INSERT ROW Create new object Add object to EDM Context Update Context
DELETE ROW Get instance of object from EDM Context Ask Context to remove the object Update Context
UPDATE ROW Get instance of object from EDM Context Update object Update Context
24Lecture Topic