Object/Relational Mapping 2008: Hibernate and The Entity Data Model (EDM)
Object/Relational Mapping 2008: Hibernate and The Entity Data Model (EDM)
Database
3
Object-Relational Mapping
Has a history, but widely adopted only since open-
source Hibernate project started, 2001-2002.
The Hibernate project [7] was founded and led by
Gavin King, a Java/J2EE software developer, now
part of Jboss. King wrote an excellent book [3].
Microsoft has adopted a comparable approach with
EDM, Entity Data Model and its Entity Framework,
for release this year. [1, 10]
Both Hibernate and EDM support (or will support)
multiple databases: Oracle, DB2, SQL Server, …
4
Java Persistence Architecture (JPA)
JPA is part of current JEE (previously J2EE), Sun’s
Java Enterprise Edition
JPA is a standardized version of the Hibernate
architecture
EJB 3 (current Entity Java Beans) uses JPA for EJB
persistence, i.e., persistence of “managed” objects
JPA and EJB 3 are now available in major application
servers: Oracle TopLink 11g, OpenJPA for WebSphere
and WebLogic, Hibernate JPA for JBoss
JPA can be used outside EJB 3 for persistence of
ordinary objects, as Hibernate is used in this talk
5
Current ORM Impetus: the web app
A web app, with its multi-threaded object layer, particularly
needs help with the correct handling of persistent data
Concurrent
web requests
from users
Web layer
App Multi-threaded Other
server(s) Object layer apps
ORM
Database Databas
server e
6
Our Universe of Discourse
Object-oriented web apps with database backed data
Let’s consider sites with
◦ Possibly many application servers, where the objects live
◦ A single database server with plenty of CPUs and disks
Given today’s fast machines and databases, this
configuration scales up to many 100s of
transactions/second (over 1 M Tx/hour)
We will concentrate on common characteristics of
Hibernate and EDM
7
Outline of Presentation
-------Ask questions any time
Schema mapping
Entities and their identity
Relationships
Inheritance
The Pizza Shop Example
------Short Break-------
Sample code using entity objects
Development tools, artifacts
The ORM runtime system
Transactions, performance
-------Summary, final questions-------
8
Data Modeling
Three modeling methodologies:
◦ We all know the venerable Chen E-R models for
database schemas; the extended E-R models (EER)
incorporate inheritance
◦ The object modeling approach uses UML class
diagrams, somewhat similar to EER
◦ The tables of the database define the “physical”
schema, itself a model of underlying resources
Therelationship between these models involves
schema mapping, covered in last SIGMOD’s
keynote talk by Phil Bernstein[9]
9
Even simple cases need help
In the simplest case, a program object of class A has fields x,
y, z and a table B has columns x, y, z
◦ Each instance of A has a row in B and vice versa, via ORM
◦ Are we done?
◦ If x is a unique id, and x, y, and z are simple types, yes.
◦ --Or some unique id in (x, y, z), possibly composite
Ifno unique id in (x, y, z), the object still has its innate
identity, but corresponding rows involve duplicate rows,
against relational model rules
So in practice, we add a unique id in this case:
Class A1 has id, x, y, z and table B1 has id, x, y, z
10
Persistent Objects & Identity
A “persistent object” is an ordinary program object
tied via ORM to database data for its long-term state
The program objects come and go as needed
Don’t confuse this with language-provided persistence
(Java/C#), a less robust mechanism
Persistent objects have field-materialized identity
It makes sense—Innate object identity depends on
memory addresses, a short-lived phenomenon
So long-lived objects (could be years…) have to be
identified this way, it’s not the database’s fault
11
Persistent Objects need tracking
We want only one copy of each unique object in use by
an app, a basic idea of OO programming
Each persistent object has a unique id
Wecan no longer can depend on object location in
memory to ensure non-duplication
So we have a harder problem than before—need an
active agent tracking objects
This agent is part of ORM’s runtime system
The ORM uses hashing to keep track of ids, detect
duplicates
12
ORM Entities
Like E/R entities, ORM entities model collections of real-
world objects of interest to the app
Entities have properties/attributes of database datatypes
Entities participate in relationships—see soon (but
relationships are not “first class” objects, have no attributes)
Entities have unique ids consisting of one or more properties
Entity instances (AKA entities) are persistent objects of
persistent classes
Entityinstances correspond to database rows of matching
unique id
13
Value Objects
In fact, persistent objects can be entities or value objects
Value objects can represent E/R composite attributes and multi-
valued attributes
Example: one address consisting of several address attributes for a
customer.
Programmers want an object for the whole address, hanging off the
customer object
Value objects provide details about some entity, have lifetime tied to
their entity, don’t need own unique id
Value objects are called Hibernate “components”, EDM “complex
types”
We’ll only discuss entities for persistent objects
For this presentation, persistent object = entity object
14
Creating Unique IDs
A new entity object needs a new id, and the database is holding all
the old rows, so it is the proper agent to assign it
Note this can’t be done with standard SQL insert, which needs
predetermined values for all columns
Every production database has a SQL extension to do this
◦ Oracle’s sequences
◦ SQL Server’s auto-increment datatype
◦ …
The ORM system coordinates with the database to assign the id, in
effect standardizing an extension of SQL
Keys obtained this way have no meaning, are called “surrogate
keys”
Natural keys can be used instead if they are available.
15
Entity Model
PizzaOrder 0..* 0..*
Topping
10..*
PizzaSize
16
Classic Relationships
A PizzaOrder has a PizzaSize and a set of Toppings
N-1
0..*
1
E-R diagram
PizzaSize
0..*
1
pizza_order
PizzaSize id sizeid (FK) room status
pizza_size
id name
topping
Needed database schema:
id name
has one table for each
entity, plus a link table for order_topping
N-N relationship orderid (FK) toppingid (FK)
18
Inheritance
Example: generalize Topping to PizzaOption, to allow other options
in the future:
◦ Topping ISA PizzaOption
◦ Shape ISA PizzaOption, …
Then a PizzaOrder can have a collection of PizzaOptions
◦ We can process the PizzaOptions generically, but when necessary, be
sensitive to their subtype: Topping or Shape
◦ It is important to have “polymorphic associations”, such as PizzaOrder
to PizzaOption, that deliver the right subtype object when followed.
Inheritance is supported directly in Java, C#, etc., ISA
“relationship”
Inheritance is not native to RDBs, but part of EER, extended entity-
relationship modeling, long-known schema-mapping problem
19
Option
∙ id
Inheritance Hierarchies ∙ name
Topping Shape
∙ color ∙ aspect
20
Inheritance Mapping (single table)
Option
0..* 0..* ∙ id
PizzaOrder
∙ name pizza_order
0..* id sizeid (FK) room status
1 pizza_size
Topping Shape
id name
PizzaSize ∙ color ∙ aspect
order_option
kind
kind =2 orderid (FK) optionid (FK)
=1
option
id kind name color aspect
22
Inheritance Mapping (3 tables)
Option
PizzaOrder 0..* 0..* ∙ id
∙ name pizza_order
0..* id sizeid (FK) room status
1 pizza_size
Topping Shape id name
PizzaSize ∙ color ∙ aspect
order_option
orderid (FK) optionid (FK)
option
id name
topping shape
id (FK) color id(FK) aspect
23
Inheritance Mapping (hybrid)
Option
PizzaOrder 0..* 0..* ∙ id
∙ name pizza_order
0..* id sizeid (FK) room status
1 pizza_size
Topping Shape id name
PizzaSize ∙ color ∙ aspect
order_option
orderid (FK) optionid (FK)
option
id kind name aspect
topping
id (FK) color
24
A Mapping dissected
Topping instance
Option
∙ id Topping
∙ name
∙ id
∙ name
-------------- B
Topping Shape ∙ color C
∙ color ∙ aspect A
25
Queries for views
Query for Topping content is basically
select id, name, color
from (select * from option where kind=1)
join topping on <unique key match>
26
Example of an object model
that doesn’t fit current ORM
Option
PizzaOrder 0..* 1..* ∙ id
∙ name
∙ seqNumber
∙ priority
28
The Pizza Shop Example
Implemented using Hibernate and Microsoft EDM: same
architecture, similar code, same database schema
Implemented as client-server app and web app: only the top-
level code changes
◦ Client-server means all the app code runs on the client, with
network connection to DB
◦ Web app means all the app code runs on the web server/app
server, clients use browser, DB can be on another server.
Transactionsare explicitly coded, not using container-
managed transactions (EJB/COM+ Serviced Components)
29
The Pizza Shop: layers
Presentation Layer:
User interface
31
The Pizza Shop: Client-server
UI: asks user about pizza
order, calls makeOrder() of
service layer
32
The Pizza Shop: Web app
Client using browser
DB Server
33
Pizza Shop Entities, Mapping
0..*
1 pizza_order
id sizeid (FK) room status
PizzaSize pizza_size
id name
SysTime topping
id name
Needed database schema:
has one table for each order_topping
entity, plus a link table for orderid (FK) toppingid (FK)
N-N relationship
sys_time
34 id current_day report_day
Half-way point
To come:
◦ Sample code using entity objects
◦ Development tools, artifacts
◦ The ORM runtime system
◦ Transactions, performance
◦ Summary, more questions
Questions now?
35
Entity Objects: POJOs/POCOs
POJO=plain old Java object, POCO=plain old CLR object
(C#, etc., CLR= Common Language Runtime of .NET)
◦ No special methods need to be implemented
◦ Objects are created with normal “new”, not some required factory
Compare to EJB2 Entity Java Bean, COM “managed”
objects: these are hard to unit-test, tend to be “heavy-weight”
EDM: entity objects are POCOs, but need to extend system
class EntityObject (some say this is too invasive, non-POCO)
Hibernate: entity objects are POJOs, with no required
superclass
36
Example Simple POJO with properties
id and sizeName
public class PizzaSize {
Private fields for
private int id;
properties
private String sizeName;
public PizzaSize () {} No-args constructor
Getter for id: “id” is a
public int getId() { return this.id;}
read-only property “
public String getSizeName() { return
this.sizeName;} Getter and setter
for sizeName:
public void setSizeName(String sizeName)“sizeName”
{ is a
this.sizeName = sizeName; read-write property
}
… // equals, hashCode, other methods
}
37
Example Simple POCO
Note: C# has property-specific syntax
public class PizzaSize
{
private int _ID; Private fields for
private string _SizeName; properties
public int ID
{ Getter for id:
get { return this._ID;} “id” is a read-
} only property
public string SizeName
{
Getter and setter
get { return this._SizeName;}
for sizeName:
set { this._SizeName = value;} “sizeName” is a
} read-write property
… // other methods
}
38
Hibernate entity object POJO with
Relationships
public class PizzaOrder {
// Fields, constructors, property getters, setters
// as in simple POJO
public PizzaSize getPizzaSize() { return this.pizzaSize;}
public void setPizzaSize(PizzaSize pizzaSize) {
N-1 relationship
this.pizzaSize = pizzaSize; to PizzaSize
}
public Set<Topping> getToppings() {
N-N relationship
return this.toppings; to Topping
}
…
Standard
}
collection
type
39
EDM entity object POCO with
Relationships (generated code)
Note: italics indicate pseudocode
public partial class PizzaOrder:
global::System.Data.Objects.DataClasses.EntityObject
{ // Fields, constructors, property getters, setters
// setters have code to report property change
public PizzaSize PizzaSize N-1 relationship
{ to PizzaSize
get { return PizzaSize object from superclass RelationshipManager; }
set { set value in superclass RelationshipManager; }
}
public global::System.Data.Objects.DataClasses.EntityCollection<Topping>
Topping
N-N relationship
{ to Topping
get { return EntityCollection<Topping> from superclass’s
RelationshipManager; }
}
Special collection
…
type, with familiar
} API
40
Sample code using entity objects
Just “dot through” the N-1 relationship: an order has a unique
PizzaSize object bound to it
order.getSize().getSizeName() //Hibernate/Java
order.Size.SizeName // EDM/C#
41
Sample Code: persist new object
Hibernate:
Integer orderID = (Integer)session.save(order);
42
Sample code for a “finder”
To get PizzaOrder objects for a certain room and day, including
available Toppings (and PizzaSize) for each
Hibernate HQL: Toppings available in a lazy way
List<PizzaOrder> orders =
session.createQuery("from PizzaOrder o
where o.roomNumber = "+ roomNumber +
“ and o.day = " + day ).list();
EDM Entity SQL: Toppings available by explicit request here:
List<PizzaOrder> orders = new ObjectQuery<PizzaOrder>("select
value o from PizzaEntities.PizzaOrder as o
where o.RoomNumber = " + roomNumber +
“ and o.Day = " + day, context).
Include("Topping").Include("PizzaSize").ToList();
43
Hibernate lazy fetch
Inthe finder query, Hibernate returns PizzaOrder objects
with a “proxy” for the associated PizzaSize and a
“collection wrapper” for the Toppings collection
As long as the runtime system is still alive, first access to
such an association results in a DB hit for the actual data
Firstaccess after the runtime is shut down results in an
exception: it’s too late to be lazy
This default strategy can be overridden in the mapping
file: lazy=“false” for PizzaOrder’s Toppings, for example.
EDM: no implicit database access, so need to code what
you need
44
More queries: some joins
Example: Find all pizza orders for today (order’s day matches
sys_time’s current_day). No relationship for this, so no connections in
the object graph.
Note no mapped association on day, so no handy collection of object
references to use. Use a join…
◦ EDM Entity SQL:
“select value o from PizzaEntities.PizzaOrder as o join PizzaEntities.SysTime as t on
o.Day = t.CurrentDay”
◦ EDM LINQ: language-integrated query
List<PizzaOrder> l = (from o in context.PizzaOrder join s in context.SysTime on
o.Day equals s.CurrentDay select o).ToList(); // no quotes! C# knows query syntax
and does type checking
◦ HQL:
“select o from PizzaOrder o, SysTime t where o.day = t.currentDay”
45
More query features
Group by, having, order by
Parameterized queries
Pairs of objects returned, etc.
Scalars and aggregates
Build up queries using methods
Hibernate: direct SQL queries
stored procedures
Control of fetch strategies
46
Entity objects in two layers
Service layer DAO
Create context and transaction
Call DAO to get entity objects to
Run query for objects or scalar
work on
results
Or Call DAO to add objects
Add new objects
Or Call objects’ own methods
EDM: context.SaveChanges()/
Hibernate: session.flush() (can be
done automatically)
Commit transaction, drop context
47
Entity Objects can do more
So far, entity objects carry data to/from database
i.e, represent persistent data
But objects should have related behavior too
No problem: add methods to entity classes
Suppose app needs to compute optimal ordering
of toppings for building pizza
List<Topping> x.getToppingsInBuildOrder()
This should be method of PizzaOrder, an entity
48
Adding business methods to the
entity classes
Hibernate:relatively simple entity classes, can
expand as needed
EDM: generated code for entity classes: how can
we add to it?
Partial classes of C# come to the rescue:
◦ Generated code for PizzaOrder provides data methods in
one partial class for PizzaOrder
◦ We code business methods in another partial class for
PizzaOrder, in another source file.
◦ Compiler puts them together
49
“Rich” Domain model
Domain classes (entities) manage their persistent data, and
“rich” ones also provide app-related actions on their data
Ideaof DDD, domain-driven design (Fowler[13], Evans[14],
2004)
Service layer coordinates actions between entities as needed
for transactional actions
Service layer should be thin, delimiting transactions and
calling on domain classes for most of the work,
Data-only entities dubbed “anemic domain model”
50
The Pizza Shop: layers refined
Presentation Layer:
User interface
Domain/Entity Objects
Service layer: Runs transactions • Express data model
using various domain objects • Carry data
• Can be used various layers
Domain layer: business logic of
domain objects • Persisted by DB
• Have business methods
Data Access Layer: Uses belonging to core code
ORM
51
Development Tools
Goal of using GUI to incrementally build a data model is
doable, coming, will be great
Example: EDM data model display:
5252
Development Tools
The EM tools
◦ Can turn the entity model into program classes
◦ Can turn the entity model into database schema
◦ Or turn database schema into an entity model
◦ Or turn a set of classes into an entity model
Pizza Shop is simple enough to be specified by database schema +
one execution of tool
For complex systems, you need to work with the XML mapping
files to get the full use of these systems today. (JPA uses source
annotations instead of XML mapping files)
Luckily, only elementary XML is needed, let’s look at some files…
53
XML: Hibernate PizzaSize
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD
3.0//EN” "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="pizza.domain.PizzaSize" table="PIZZA_SIZE">
<id name="id" type="int">
<column name="ID" />
<generator class="native" />
</id>
<property name="sizeName" type="string">
<column name="SIZE_NAME" length="30" not-null="true" unique="true" />
</property>
</class>
</hibernate-mapping>
54
Hibernate Mapping: PizzaOrder
<class name="pizza.domain.PizzaOrder" table="PIZZA_ORDER">
<id name="id" column=“ID” type="int">
<generator class="native" />
</id>
<many-to-one name="pizzaSize" class="pizza.domain.PizzaSize">
<column name="SIZE_ID" not-null="true" />
</many-to-one>
<property name="roomNumber" type="int"> <!—similarly, status property-->
<column name="ROOM_NUMBER" not-null="true" />
</property>
<set name="toppings" table="ORDER_TOPPING">
<key column="ORDER_ID" not-null="true" </key>
<many-to-many class="pizza.domain.Topping">
<column name="TOPPING_ID" not-null="true" />
</many-to-many>
</set>
</class>
55
XML for EDM PizzaSize: 3
parts
<EntityType Name="PizzaSize">
<Key><PropertyRef Name="ID" /></Key>
<Property Name="ID" Type="Int32" Nullable="false" />
Conceptual
<Property Name="SizeName" Type="String" Nullable="false" MaxLength="50" />
schema
<NavigationProperty Name="PizzaOrder“ Relationship = "PizzaModel.FK_PizzaOrder_PizzaSize"
FromRole="PizzaSize" ToRole="PizzaOrder" />
</EntityType> …
<EntityType Name="PizzaSize">
<Key><PropertyRef Name="ID" /></Key>
<Property Name="ID" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
Storage
<Property Name="SizeName" Type="nvarchar" Nullable="false" MaxLength="50" />
schema
</EntityType> …
<EntityTypeMapping TypeName="IsTypeOf(PizzaModel.PizzaSize)">
<MappingFragment StoreEntitySet="PizzaSize">
<ScalarProperty Name="ID" ColumnName="ID" />
<ScalarProperty Name="SizeName" ColumnName="SizeName" />
</MappingFragment> Mapping
</EntityTypeMapping>
56
EDM XML for Association
<EntityType Name="PizzaSize">
<Property …>
<NavigationProperty Name="PizzaOrder“
Relationship = "PizzaModel.FK_PizzaOrder_PizzaSize"
FromRole="PizzaSize" ToRole="PizzaOrder" />
</EntityType>
<Association Name="FK_PizzaOrder_PizzaSize">
Conceptual
<End Role="PizzaSize" Type="PizzaModel.PizzaSize" Multiplicity="1" />
schema
<End Role="PizzaOrder" Type="PizzaModel.PizzaOrder" Multiplicity="*" />
</Association> …
<Association Name="FK_PizzaOrder_PizzaSize">
<End Role="PizzaSize" Type="PizzaModel.Store.PizzaSize" Multiplicity="1" />
<End Role="PizzaOrder" Type="PizzaModel.Store.PizzaOrder" Multiplicity="*" />
<ReferentialConstraint>
<Principal Role="PizzaSize"><PropertyRef Name="ID" /></Principal>
Storage
<Dependent Role="PizzaOrder“><PropertyRef Name="SizeID" /></Dependent>
schema
</ReferentialConstraint>
</Association>
57
The Entity Context
Hibernate Session, EDM ObjectContext, seen as “session” and
“context” variables in previous code.
Belongs to one thread as its object cache, usually for one
transaction lifetime, one request-response cycle.
Usually defers updates to the database to end of transaction
Ensures only one entity object for each id
As a cache, avoids rereads of database, preventing some
repeated-read anomalies if running at lower isolation level.
Caching: the database itself has the definitive cache, global to
all apps using it…
58
The Entity Context at work
Thread using
1. Thread creates entity
objects
context, starts
transaction
Entity 2. Accesses entity
context objects
3. Commits
4. Drops entity context
Database 5. Uses (reads) entity
Cache (rows) objects outside
context
Database
On disk
59
The Entity Contexts & the DB cache
Under Concurrent Access
Thread using Thread using
objects objects
Entity Entity
context context Other
apps
Database
Cache (rows) Database
Database
On disk
60
Entity Object Life Cycle
Birth: as a POJO or POCO, unconnected to the context
Or read in by query, so already connected to context
Possibly modified by app
If new, needs addition to context: save()/AddObject()
By commit, its updates are saved to DB
Lives on after context dropped, useful for results display
Can be reattached to new context, but not covered here
Normally, abandoned soon, garbage-collected
61
Queries and the object cache
When a query delivers entity objects, the id’s
may already be in the cache
Need to avoid duplicates, preserve app’s
changes
Hibernate flushes changes to DB before query
by default
EDM, by default, preserves the older object of a
certain id, avoiding DB writes at this point
62
Transactions
Hibernate and EDM are designed for transactional apps
Bothsupport transactions involving single or multiple
DBs/resource managers, via JTA or DTC for distributed case
(JTA=Java Transaction API, DTC= Microsoft’s Distributed Transaction Coordinator)
63
Transactions
RC, SR have usual meaning, handled in DB
Also Snapshot Isolation for some DBs
Pizza project uses SR, but easy to change
RC often not enough, but RC + versioning is attractive
Versioning by ORM provides “optimistic CC”:
◦ Context remembers original object state, or row version if
supported by DB
◦ For changed objects, compares saved vs. current DB state at
commit-time, throws an exception if changed
◦ Avoids lost updates otherwise possible with RC
◦ Refresh action available to help with retries
64
Conversations
So far, each request has had one transaction, good enough
for Pizza Shop
Some actions perceived as a unit to the user are made up
of several requests
Example: Read a current bid amount, let user decide on
new bid, then make the new bid
Two DB transactions here, since no DB transaction should
span the think time
Thetwo transactions are related: a “conversation” or
“session” or “business transaction” with one user
65
Conversations
Example Conversation: Look at bid, think, update bid
Someone else can slip in a bid update between my look
and update
One solution: make my bid update contingent on the bid
amount still being what I saw before, abort second
transaction if not
This is versioning again, now used across multiple
system transactions in the same context
66
Conversations and Sessions
We’re thinking about a context spanning several requests of a
conversation so it can do version checking
----|---look----|------------think---------------|--update--|----
Tx1:10 ms 2 min Tx2:10 ms
Expensive in memory, however, since the context must be kept alive
between requests, while the user thinks: above 20 ms vs 2020 ms,
factor of 100
Rather than holding a whole context for a conversation, we can
condense it down to a usually-small dataset as part of “session data”,
save nearly a factor of 100
This can be held in the common database, but as unshared data, has
other possibilities too
67
Performance & Scalability:
Assumptions
One database server with plenty of memory
Warm data is in DB server’s cache
One or multiple application servers
No shared mutable data on app servers
All shared mutable data is in the database
DB server’s cache data is fast to access over a
local network
Standarduse of pooled DB connections to avoid
connection-setup delays
68
Web app, small site
concurrent
HTTP request-
response cycles
Object Object
layer layer Single
App Server
Entity Entity
context context
1 ms
latency
Database
Cache (rows)
10 ms
latency
Database
On disk
69
Web app, larger site
concurrent
HTTP request-
response cycles
Database
Cache (rows)
10 ms
latency Single DB Server
Database
On disk
70
Second-level caching
Ifthis simple design is maxing out, say with 1000s of
Tx/sec
◦ And is not sharing DB with other apps
◦ And specifically is overwhelming the DB
Can try second-level caching to offload the DB
Example: JBoss Cache, a transactional replicated
distributed cache
i.e, can handle case of multiple app servers
Involves more configuration, tuning, not easy
Hopefully plenty of money for consultants at this point
71
Summary
Relational technology continues to prove
its worth, and ORM is using it in full
Only one deficiency of SQL 92
uncovered: standard way to generate new
unique id
The object-relational impedance
mismatch has been largely overcome
No textbooks yet: please fix!
72
Bibliography
In proceedings (subset):
[1] Adya, Atul, Blakely, Jose, Melnik, Sergey, Meralidhar, S., and the ADO.NET Team,
2007, Anatomy of the ADO.NET Entity Framework, In Proceedings of SIGMOD 2007,
ACM Press, New York, NY.
[3] Bauer, Christian, King, Gavin 2006 Java Persistence with Hibernate, Manning
[5] Bernstein, Phil, Melnik, Sergey. 2007 Model Management 2.0—Manipulating Richer
Mappings. In Proceedings of SIGMOD 2007, ACM Press, New York, NY, 1-12.
[7] Hibernate, http://www.hibernate.org
[10] MSDN Library, 2006 The ADO.NET Entity Framework Overview,
http://msdn2.microsoft.com/en-us/library/aa697427(VS.80).aspx
Added:
[13] Fowler, Martin 2003 Patterns of Enterprise Application Architecture, Addison-Wesley
[14] Evans, Eric 2004 Domain-Driven Design, Addison-Wesley
73