Nhibernate Reference
Nhibernate Reference
Version: 1.2.0
Table of Contents
Preface ........................................................................................................................................... vii
1. Quickstart with IIS and Microsoft SQL Server ........................................................................... 1
1.1. Getting started with NHibernate .......................................................................................... 1
1.2. First persistent class ........................................................................................................... 2
1.3. Mapping the cat ................................................................................................................. 3
1.4. Playing with cats ................................................................................................................ 4
1.5. Finally ............................................................................................................................... 6
2. Architecture ................................................................................................................................ 7
2.1. Overview ........................................................................................................................... 7
2.2. Instance states .................................................................................................................... 9
2.3. Contextual Sessions ............................................................................................................ 9
3. ISessionFactory Configuration .................................................................................................. 11
3.1. Programmatic Configuration ............................................................................................. 11
3.2. Obtaining an ISessionFactory ............................................................................................ 12
3.3. User provided ADO.NET connection ................................................................................ 12
3.4. NHibernate provided ADO.NET connection ...................................................................... 12
3.5. Optional configuration properties ...................................................................................... 14
3.5.1. SQL Dialects ......................................................................................................... 16
3.5.2. Outer Join Fetching ............................................................................................... 17
3.5.3. Custom ICacheProvider ......................................................................................... 17
3.5.4. Query Language Substitution ................................................................................. 18
3.6. Logging ........................................................................................................................... 18
3.7. Implementing an INamingStrategy .................................................................................... 18
3.8. XML Configuration File ................................................................................................... 18
4. Persistent Classes ...................................................................................................................... 20
4.1. A simple POCO example .................................................................................................. 20
4.1.1. Declare accessors and mutators for persistent fields ................................................. 21
4.1.2. Implement a default constructor ............................................................................. 21
4.1.3. Provide an identifier property (optional) .................................................................. 21
4.1.4. Prefer non-sealed classes and virtual methods (optional) .......................................... 21
4.2. Implementing inheritance ................................................................................................. 22
4.3. Implementing Equals() and GetHashCode() ....................................................................... 22
4.4. Lifecycle Callbacks .......................................................................................................... 23
4.5. IValidatable callback ........................................................................................................ 24
5. Basic O/R Mapping ................................................................................................................... 25
5.1. Mapping declaration ......................................................................................................... 25
5.1.1. XML Namespace .................................................................................................. 25
5.1.2. hibernate-mapping ................................................................................................. 26
5.1.3. class ..................................................................................................................... 26
5.1.4. id .......................................................................................................................... 28
5.1.4.1. generator .................................................................................................... 28
5.1.4.2. Hi/Lo Algorithm ......................................................................................... 30
5.1.4.3. UUID Hex Algorithm ................................................................................. 30
5.1.4.4. UUID String Algorithm .............................................................................. 30
5.1.4.5. GUID Algorithms ....................................................................................... 30
5.1.4.6. Identity columns and Sequences .................................................................. 30
5.1.4.7. Assigned Identifiers .................................................................................... 31
5.1.5. composite-id ......................................................................................................... 31
NHibernate 1.2.0 ii
NHibernate - Relational Persistence for Idiomatic .NET
NHibernate 1.2.0 iv
NHibernate - Relational Persistence for Idiomatic .NET
NHibernate 1.2.0 v
NHibernate - Relational Persistence for Idiomatic .NET
NHibernate 1.2.0 vi
Preface
Working with object-oriented software and a relational database can be cumbersome and time consuming in
today's enterprise environments. NHibernate is an object/relational mapping tool for .NET environments. The
term object/relational mapping (ORM) refers to the technique of mapping a data representation from an object
model to a relational data model with a SQL-based schema.
NHibernate not only takes care of the mapping from .NET classes to database tables (and from .NET data types
to SQL data types), but also provides data query and retrieval facilities and can significantly reduce develop-
ment time otherwise spent with manual data handling in SQL and ADO.NET.
NHibernate's goal is to relieve the developer from 95 percent of common data persistence related programming
tasks. NHibernate may not be the best solution for data-centric applications that only use stored-procedures to
implement the business logic in the database, it is most useful with object-oriented domain models and business
logic in the .NET-based middle-tier. However, NHibernate can certainly help you to remove or encapsulate
vendor-specific SQL code and will help with the common task of result set translation from a tabular represent-
ation to a graph of objects.
If you are new to NHibernate and Object/Relational Mapping or even .NET Framework, please follow these
steps:
1. Read Chapter 1, Quickstart with IIS and Microsoft SQL Server for a 30 minute tutorial, using Internet In-
formation Services (IIS) web server.
2. Read Chapter 2, Architecture to understand the environments where NHibernate can be used.
3. Use this reference documentation as your primary source of information. Consider reading Hibernate in
Action (http://www.manning.com/bauer/) or the work-in-progress NHibernate in Action (ht-
tp://www.manning.com/kuate/) if you need more help with application design or if you prefer a step-
by-step tutorial. Also visit http://nhibernate.sourceforge.net/NHibernateEg/ for NHibernate tutorial with
examples.
5. Third party demos, examples and tutorials are linked on the NHibernate Resources page
[http://www.hibernate.org/365.html].
6. The Community Area on the NHibernate website is a good source for design patterns and various integra-
tion solutions (ASP.NET, Windows Forms).
2. Microsoft SQL Server 2000 - the database server. This tutorial uses the desktop edition (MSDE), a free
download from Microsoft. Support for other databases is only a matter of changing the NHibernate SQL
dialect and driver configuration.
First, we have to create a new Web project. We use the name QuickStart, the project web virtual directory will
http://localhost/QuickStart. In the project, add a reference to NHibernate.dll. Visual Studio will auto-
matically copy the library and its dependencies to the project output directory. If you are using a database other
than SQL Server, add a reference to the driver assembly to your project.
We now set up the database connection information for NHibernate. To do this, open the file Web.config auto-
matically generated for your project and add configuration elements according to the listing below:
The <configSections> element contains definitions of sections that follow and handlers to use to process their
content. We declare the handler for the configuration section here. The <hibernate-configuration> section
contains the configuration itself, telling NHibernate that we will use a Microsoft SQL Server 2000 database and
connect to it through the specified connection string. The dialect is a required setting, databases differ in their
interpretation of the SQL "standard". NHibernate will take care of the differences and comes bundled with dia-
NHibernate 1.2.0 1
Quickstart with IIS and Microsoft SQL Server
An ISessionFactory is NHibernate's concept of a single datastore, multiple databases can be used by creating
multiple XML configuration files and creating multiple Configuration and ISessionFactory objects in your
application.
The last element of the <hibernate-configuration> section declares QuickStart as the name of an assembly
containing class declarations and mapping files. The mapping files contain the metadata for the mapping of the
POCO class to a database table (or multiple tables). We'll come back to mapping files soon. Let's write the
POCO class first and then declare the mapping metadata for it.
using System;
namespace QuickStart
{
public class Cat
{
private string id;
private string name;
private char sex;
private float weight;
public Cat()
{
}
public string Id
{
get { return id; }
set { id = value; }
}
NHibernate is not restricted in its usage of property types, all .NET types and primitives (like string, char and
DateTime) can be mapped, including classes from the System.Collections namespace. You can map them as
values, collections of values, or associations to other entities. The Id is a special property that represents the
database identifier (primary key) of that class, it is highly recommended for entities like a Cat. NHibernate can
NHibernate 1.2.0 2
Quickstart with IIS and Microsoft SQL Server
use identifiers only internally, without having to declare them on the class, but we would lose some of the flex-
ibility in our application architecture.
No special interface has to be implemented for persistent classes nor do we have to subclass from a special root
persistent class. NHibernate also doesn't use any build time processing, such as IL manipulation, it relies solely
on .NET reflection and runtime class enhancement (through Castle.DynamicProxy library). So, without any de-
pendency in the POCO class on NHibernate, we can map it to a database table.
<!-- A cat has to have a name, but it shouldn' be too long. -->
<property name="Name">
<column name="Name" length="16" not-null="true" />
</property>
<property name="Sex" />
<property name="Weight" />
</class>
</hibernate-mapping>
Every persistent class should have an identifer attribute (actually, only classes representing entities, not depend-
ent value objects, which are mapped as components of an entity). This property is used to distinguish persistent
objects: Two cats are equal if catA.Id.Equals(catB.Id) is true, this concept is called database identity.
NHibernate comes bundled with various identifer generators for different scenarios (including native generators
for database sequences, hi/lo identifier tables, and application assigned identifiers). We use the UUID generator
(only recommended for testing, as integer surrogate keys generated by the database should be prefered) and
also specify the column CatId of the table Cat for the NHibernate generated identifier value (as a primary key
of the table).
All other properties of Cat are mapped to the same table. In the case of the Name property, we mapped it with an
explicit database column declaration. This is especially useful when the database schema is automatically gen-
erated (as SQL DDL statements) from the mapping declaration with NHibernate's SchemaExport tool. All other
properties are mapped using NHibernate's default settings, which is what you need most of the time. The table
Cat in the database looks like this:
NHibernate 1.2.0 3
Quickstart with IIS and Microsoft SQL Server
You should now create the database and this table manually, and later read Chapter 16, Toolset Guide if you
want to automate this step with the SchemaExport tool. This tool can create a full SQL DDL, including table
definition, custom column type constraints, unique constraints and indexes. If you are using SQL Server, you
should also make sure the ASPNET user has permissions to use the database.
ISessionFactory sessionFactory =
new Configuration().Configure().BuildSessionFactory();
An ISessionFactory is responsible for one database and may only use one XML configuration file
(Web.config or hibernate.cfg.xml). You can set other properties (and even change the mapping metadata) by
accessing the Configuration before you build the ISessionFactory (it is immutable). Where do we create the
ISessionFactory and how can we access it in our application?
An ISessionFactory is usually only built once, e.g. at startup inside Application_Start event handler. This
also means you should not keep it in an instance variable in your ASP.NET pages, but in some other location.
Furthermore, we need some kind of Singleton, so we can access the ISessionFactory easily in application
code. The approach shown next solves both problems: configuration and easy access to a ISessionFactory.
using System;
using System.Web;
using NHibernate;
using NHibernate.Cfg;
namespace QuickStart
{
public sealed class NHibernateHelper
{
private const string CurrentSessionKey = "nhibernate.current_session";
private static readonly ISessionFactory sessionFactory;
static NHibernateHelper()
{
sessionFactory = new Configuration().Configure().BuildSessionFactory();
}
if (currentSession == null)
{
currentSession = sessionFactory.OpenSession();
context.Items[CurrentSessionKey] = currentSession;
}
return currentSession;
}
NHibernate 1.2.0 4
Quickstart with IIS and Microsoft SQL Server
if (currentSession == null)
{
// No current session
return;
}
currentSession.Close();
context.Items.Remove(CurrentSessionKey);
}
This class does not only take care of the ISessionFactory with its static attribute, but also has code to remem-
ber the ISession for the current HTTP request.
An ISessionFactory is threadsafe, many threads can access it concurrently and request ISessions. An ISes-
sion is a non-threadsafe object that represents a single unit-of-work with the database. ISessions are opened
by an ISessionFactory and are closed when all work is completed:
ITransaction tx = session.BeginTransaction();
session.Save(princess);
tx.Commit();
NHibernateHelper.CloseSession();
In an ISession, every database operation occurs inside a transaction that isolates the database operations (even
read-only operations). We use NHibernate's ITransaction API to abstract from the underlying transaction
strategy (in our case, ADO.NET transactions). Please note that the example above does not handle any excep-
tions.
Also note that you may call NHibernateHelper.GetCurrentSession(); as many times as you like, you will al-
ways get the current ISession of this HTTP request. You have to make sure the ISession is closed after your
unit-of-work completes, either in Application_EndRequest event handler in your application class or in a Ht-
tpModule before the HTTP response is sent. The nice side effect of the latter is easy lazy initialization: the
ISession is still open when the view is rendered, so NHibernate can load unitialized objects while you navigate
the graph.
NHibernate has various methods that can be used to retrieve objects from the database. The most flexible way
is using the Hibernate Query Language (HQL), which is an easy to learn and powerful object-oriented exten-
sion to SQL:
ITransaction tx = session.BeginTransaction();
NHibernate 1.2.0 5
Quickstart with IIS and Microsoft SQL Server
tx.Commit();
NHibernate also offers an object-oriented query by criteria API that can be used to formulate type-safe queries.
NHibernate of course uses IDbCommands and parameter binding for all SQL communication with the database.
You may also use NHibernate's direct SQL query feature or get a plain ADO.NET connection from an ISes-
sion in rare cases.
1.5. Finally
We only scratched the surface of NHibernate in this small tutorial. Please note that we don't include any
ASP.NET specific code in our examples. You have to create an ASP.NET page yourself and insert the
NHibernate code as you see fit.
Keep in mind that NHibernate, as a data access layer, is tightly integrated into your application. Usually, all
other layers depend on the persistence mechanism. Make sure you understand the implications of this design.
NHibernate 1.2.0 6
Chapter 2. Architecture
2.1. Overview
A (very) high-level view of the NHibernate architecture:
This diagram shows NHibernate using the database and configuration data to provide persistence services (and
persistent objects) to the application.
We would like to show a more detailed view of the runtime architecture. Unfortunately, NHibernate is flexible
and supports several approaches. We will show the two extremes. The "lite" architecture has the application
provide its own ADO.NET connections and manage its own transactions. This approach uses a minimal subset
of NHibernate's APIs:
The "full cream" architecture abstracts the application away from the underlying ADO.NET APIs and lets
NHibernate 1.2.0 7
Architecture
ISessionFactory (NHibernate.ISessionFactory)
A threadsafe (immutable) cache of compiled mappings for a single database. A factory for ISession and a
client of IConnectionProvider. Might hold an optional (second-level) cache of data that is reusable
between transactions, at a process- or cluster-level.
ISession (NHibernate.ISession)
A single-threaded, short-lived object representing a conversation between the application and the persistent
store. Wraps an ADO.NET connection. Factory for ITransaction. Holds a mandatory (first-level) cache of
persistent objects, used when navigating the object graph or looking up objects by identifier.
ITransaction (NHibernate.ITransaction)
(Optional) A single-threaded, short-lived object used by the application to specify atomic units of work.
Abstracts application from underlying ADO.NET transaction. An ISession might span several ITransac-
tions in some cases.
NHibernate 1.2.0 8
Architecture
IConnectionProvider (NHibernate.Connection.IConnectionProvider)
(Optional) A factory for ADO.NET connections and commands. Abstracts application from the concrete
vendor-specific implementations of IDbConnection and IDbCommand. Not exposed to application, but can
be extended/implemented by the developer.
IDriver (NHibernate.Driver.IDriver)
(Optional) An interface encapsulating differences between ADO.NET providers, such as parameter naming
conventions and supported ADO.NET features.
ITransactionFactory (NHibernate.Transaction.ITransactionFactory)
(Optional) A factory for ITransaction instances. Not exposed to the application, but can be extended/
implemented by the developer.
Given a "lite" architecture, the application bypasses the ITransaction/ITransactionFactory and/or IConnec-
tionProvider APIs to talk to ADO.NET directly.
transient
The instance is not, and has never been associated with any persistence context. It has no persistent identity
(primary key value).
persistent
The instance is currently associated with a persistence context. It has a persistent identity (primary key
value) and, perhaps, a corresponding row in the database. For a particular persistence context, NHibernate
guarantees that persistent identity is equivalent to CLR identity (in-memory location of the object).
detached
The instance was once associated with a persistence context, but that context was closed, or the instance
was serialized to another process. It has a persistent identity and, perhaps, a corrsponding row in the data-
base. For detached instances, NHibernate makes no guarantees about the relationship between persistent
identity and CLR identity.
Starting with version 1.2, NHibernate added the ISessionFactory.GetCurrentSession() method. The pro-
cessing behind ISessionFactory.GetCurrentSession() is pluggable. An extension interface (NHibern-
ate.Context.ICurrentSessionContext) and a new configuration parameter (hibern-
ate.current_session_context_class) have been added to allow pluggability of the scope and context of de-
fining current sessions.
See the API documentation for the NHibernate.Context.ICurrentSessionContext interface for a detailed dis-
cussion of its contract. It defines a single method, CurrentSession(), by which the implementation is respons-
NHibernate 1.2.0 9
Architecture
ible for tracking the current contextual session. Out-of-the-box, NHibernate comes with one implementation of
this interface:
NHibernate 1.2.0 10
Chapter 3. ISessionFactory Configuration
Because NHibernate is designed to operate in many different environments, there are a large number of config-
uration parameters. Fortunately, most have sensible default values and NHibernate is distributed with an ex-
ample App.config file (found in src\NHibernate.Test) that shows the various options. You usually only have
to put that file in your project and customize it.
You may obtain a Configuration instance by instantiating it directly. Heres an example of setting up a data-
store from mappings defined in two XML configuration files:
An alternative (sometimes better) way is to let NHibernate load a mapping file from an embedded resource:
Then NHibernate will look for mapping files named NHibernate.Auction.Item.hbm.xml and NHibern-
ate.Auction.Bid.hbm.xml embedded as resources in the assembly that the types are contained in. This ap-
proach eliminates any hardcoded filenames.
Another alternative (probably the best) way is to let NHibernate load all of the mapping files contained in an
Assembly:
Then NHibernate will look through the assembly for any resources that end with .hbm.xml. This approach
eliminates any hardcoded filenames and ensures the mapping files in the assembly get added.
If a tool like Visual Studio .NET or NAnt is used to build the assembly, then make sure that the .hbm.xml files
are compiled into the assembly as Embedded Resources.
NHibernate 1.2.0 11
ISessionFactory Configuration
However, NHibernate does allow your application to instantiate more than one ISessionFactory. This is use-
ful if you are using more than one database.
The application must be careful not to open two concurrent ISessions on the same ADO.NET connection!
All NHibernate property names and semantics are defined on the class NHibernate.Cfg.Environment. We will
now describe the most important settings for ADO.NET connection configuration.
NHibernate will obtain (and pool) connections using an ADO.NET data provider if you set the following prop-
erties:
NHibernate 1.2.0 12
ISessionFactory Configuration
This is an example of how to specify the database connection properties inside a web.config:
NHibernate 1.2.0 13
ISessionFactory Configuration
<nhibernate>
<add
key="hibernate.connection.provider"
value="NHibernate.Connection.DriverConnectionProvider"
/>
<add
key="hibernate.dialect"
value="NHibernate.Dialect.MsSql2000Dialect"
/>
<add
key="hibernate.connection.driver_class"
value="NHibernate.Driver.SqlClientDriver"
/>
<add
key="hibernate.connection.connection_string"
value="Server=127.0.0.1; Initial Catalog=thedatabase; Integrated Security=SSPI"
/>
<add
key="hibernate.connection.isolation"
value="ReadCommitted"
/>
</nhibernate>
You may define your own plugin strategy for obtaining ADO.NET connections by implementing the interface
NHibernate.Connection.IConnectionProvider. You may select a custom implementation by setting hibern-
ate.connection.provider_class.
System-level properties can only be set manually by setting static properties of NHibernate.Cfg.Environment
class or be defined in the <nhibernate> section of the application configuration file. These properties cannot be
set using Configuration.SetProperties or be defined in the <hibernate-configuration> section of the ap-
plication configuration file.
NHibernate 1.2.0 14
ISessionFactory Configuration
eg. SCHEMA_NAME
hibernate.max_fetch_depth Set a maximum "depth" for the outer join fetch tree
for single-ended associations (one-to-one, many-
to-one). A 0 disables default outer join fetching.
NHibernate 1.2.0 15
ISessionFactory Configuration
eg. prefix
You should always set the hibernate.dialect property to the correct NHibernate.Dialect.Dialect subclass
for your database. This is not strictly essential unless you wish to use native or sequence primary key genera-
tion or pessimistic locking (with, eg. ISession.Lock() or IQuery.SetLockMode()). However, if you specify a
dialect, NHibernate will use sensible defaults for some of the other properties listed above, saving you the ef-
fort of specifying them manually.
RDBMS Dialect
DB2 NHibernate.Dialect.DB2Dialect
Ingres NHibernate.Dialect.IngresDialect
PostgreSQL NHibernate.Dialect.PostgreSQLDialect
MySQL 3 or 4 NHibernate.Dialect.MySQLDialect
MySQL 5 NHibernate.Dialect.MySQL5Dialect
NHibernate 1.2.0 16
ISessionFactory Configuration
RDBMS Dialect
Firebird NHibernate.Dialect.FirebirdDialect
SQLite NHibernate.Dialect.SQLiteDialect
Additional dialects may be available in the NHibernateContrib package (see Part I, “NHibernateContrib Docu-
mentation”). At the time of writing this package contains support for Microsoft Access (Jet) database engine.
If your database supports ANSI or Oracle style outer joins, outer join fetching might increase performance by
limiting the number of round trips to and from the database (at the cost of possibly more work performed by the
database itself). Outer join fetching allows a graph of objects connected by many-to-one, one-to-many or one-
to-one associations to be retrieved in a single SQL SELECT.
By default, the fetched graph when loading an objects ends at leaf objects, collections, objects with proxies, or
where circularities occur.
For a particular association, fetching may be configured (and the default behaviour overridden) by setting the
fetch attribute in the XML mapping.
Outer join fetching may be disabled globally by setting the property hibernate.max_fetch_depth to 0. A set-
ting of 1 or higher enables outer join fetching for one-to-one and many-to-one associations which have been
mapped with fetch="join".
In NHibernate 1.0, outer-join attribute could be used to achieve a similar effect. This attribute is now deprec-
ated in favor of fetch.
You may integrate a process-level (or clustered) second-level cache system by implementing the interface
NHibernate.Cache.ICacheProvider. You may select the custom implementation by setting hibern-
ate.cache.provider_class. See the Section 15.2, “The Second Level Cache” for more details.
NHibernate 1.2.0 17
ISessionFactory Configuration
You may define new NHibernate query tokens using hibernate.query.substitutions. For example:
would cause the tokens true and false to be translated to integer literals in the generated SQL.
hibernate.query.substitutions toLowercase=LOWER
3.6. Logging
NHibernate logs various events using Apache log4net.
You may download log4net from http://logging.apache.org/log4net/. To use log4net you will need a
log4net configuration section in the application configuration file. An example of the configuration section is
distributed with NHibernate in the src/NHibernate.Test project.
We strongly recommend that you familiarize yourself with NHibernate's log messages. A lot of work has been
put into making the NHibernate log as detailed as possible, without making it unreadable. It is an essential
troubleshooting device. Also don't forget to enable SQL logging as described above (hibernate.show_sql), it
is your first step when looking for performance problems.
You may provide rules for automatically generating database identifiers from .NET identifiers or for processing
"logical" column and table names given in the mapping file into "physical" table and column names. This fea-
ture helps reduce the verbosity of the mapping document, eliminating repetitive noise (TBL_ prefixes, for ex-
ample). The default strategy used by NHibernate is quite minimal.
You may specify a different strategy by calling Configuration.SetNamingStrategy() before adding map-
pings:
NHibernate.Cfg.ImprovedNamingStrategy is a built-in strategy that might be a useful starting point for some
applications.
NHibernate 1.2.0 18
ISessionFactory Configuration
figuration file.
The XML configuration file is by default expected to be in your application directory. Here is an example:
</session-factory>
</hibernate-configuration>
NHibernate 1.2.0 19
Chapter 4. Persistent Classes
Persistent classes are classes in an application that implement the entities of the business problem (e.g. Custom-
er and Order in an E-commerce application). Persistent classes have, as the name implies, transient and also
persistent instance stored in the database.
NHibernate works best if these classes follow some simple rules, also known as the Plain Old CLR Object
(POCO) programming model.
using System;
using Iesi.Collections;
namespace Eg
{
public class Cat
{
private long id; // identifier
private string name;
private DateTime birthdate;
private Cat mate;
private ISet kittens
private Color color;
private char sex;
private float weight;
NHibernate 1.2.0 20
Persistent Classes
Cat declares accessor methods for all its persistent fields. Many other ORM tools directly persist instance vari-
ables. We believe it is far better to decouple this implementation detail from the persistence mechanism.
NHibernate persists properties, using their getter and setter methods.
Properties need not be declared public - NHibernate can persist a property with an internal, protected, pro-
tected internal or private visibility.
Cat has an implicit default (no-argument) constructor. All persistent classes must have a default constructor
(which may be non-public) so NHibernate can instantiate them using Activator.CreateInstance().
Cat has a property called Id. This property holds the primary key column of a database table. The property
might have been called anything, and its type might have been any primitive type, string or System.DateTime.
(If your legacy database table has composite keys, you can even use a user-defined class with properties of
these types - see the section on composite identifiers below.)
The identifier property is optional. You can leave it off and let NHibernate keep track of object identifiers in-
ternally. However, for many applications it is still a good (and very popular) design decision.
What's more, some functionality is available only to classes which declare an identifier property:
NHibernate 1.2.0 21
Persistent Classes
A central feature of NHibernate, proxies, depends upon the persistent class being non-sealed and all its public
methods, properties and events declared as virtual. Another possibility is for the class to implement an interface
that declares all public members.
You can persist sealed classes that do not implement an interface and don't have virtual members with
NHibernate, but you won't be able to use proxies - which will limit your options for performance tuning.
using System;
namespace Eg
{
public class DomesticCat : Cat
{
private string name;
This only applies if these objects are loaded in two different ISessions, as NHibernate only guarantees identity
( a == b , the default implementation of Equals()) inside a single ISession!
Even if both objecs a and b are the same database row (they have the same primary key value as their identifi-
er), we can't guarantee that they are the same object instance outside of a particular ISession context.
The most obvious way is to implement Equals()/GetHashCode() by comparing the identifier value of both ob-
jects. If the value is the same, both must be the same database row, they are therefore equal (if both are added
to an ISet, we will only have one element in the ISet). Unfortunately, we can't use that approach. NHibernate
will only assign identifier values to objects that are persistent, a newly created instance will not have any identi-
fier value! We recommend implementing Equals() and GetHashCode() using Business key equality.
Business key equality means that the Equals() method compares only the properties that form the business
key, a key that would identify our instance in the real world (a natural candidate key):
...
public override bool Equals(object other)
{
if (this == other) return true;
NHibernate 1.2.0 22
Persistent Classes
return true;
}
Keep in mind that our candidate key (in this case a composite of name and birthday) has to be only valid for a
particular comparison operation (maybe even only in a single use case). We don't need the stability criteria we
usually apply to a real primary key!
OnSave(), OnDelete() and OnUpdate() may be used to cascade saves and deletions of dependent objects. This
is an alternative to declaring cascaded operations in the mapping file. OnLoad() may be used to initialize transi-
ent properties of the object from its persistent state. It may not be used to load dependent objects since the
ISession interface may not be invoked from inside this method. A further intended usage of OnLoad(), On-
Save() and OnUpdate() is to store a reference to the current ISession for later use.
Note that OnUpdate() is not called every time the object's persistent state is updated. It is called only when a
transient object is passed to ISession.Update().
Note that OnSave() is called after an identifier is assigned to the object, except when native key generation is
used.
NHibernate 1.2.0 23
Persistent Classes
The object should throw a ValidationFailure if an invariant was violated. An instance of Validatable should
not change its state from inside Validate().
Unlike the callback methods of the ILifecycle interface, Validate() might be called at unpredictable times.
The application should not rely upon calls to Validate() for business functionality.
NHibernate 1.2.0 24
Chapter 5. Basic O/R Mapping
Note that, even though many NHibernate users choose to define XML mappings by hand, a number of tools ex-
ist to generate the mapping document, including NHibernate.Mapping.Attributes library and various template-
based code generators (CodeSmith, MyGeneration).
<?xml version="1.0"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Eg"
namespace="Eg">
<class name="Dog">
<!-- mapping for Dog could go here -->
</class>
</hibernate-mapping>
We will now discuss the content of the mapping document. We will only describe the document elements and
attributes that are used by NHibernate at runtime. The mapping document also contains some extra optional at-
tributes and elements that affect the database schemas exported by the schema export tool. (For example the
not-null attribute.)
All XML mappings should declare the XML namespace shown. The actual schema definition may be found in
the src\nhibernate-mapping.xsd file in the NHibernate distribution.
Tip: to enable IntelliSense for mapping and configuration files, copy the appropriate .xsd files to <VS.NET in-
stallation directory>\Common7\Packages\schemas\xml if you are using Visual Studio .NET 2003, or to <VS
2005 installation directory>\Xml\Schemas for Visual Studio 2005.
NHibernate 1.2.0 25
Basic O/R Mapping
5.1.2. hibernate-mapping
This element has several optional attributes. The schema attribute specifies that tables referred to by this map-
ping belong to the named schema. If specified, tablenames will be qualified by the given schema name. If miss-
ing, tablenames will be unqualified. The default-cascade attribute specifies what cascade style should be as-
sumed for properties and collections which do not specify a cascade attribute. The auto-import attribute lets
us use unqualified class names in the query language, by default. The assembly and namespace attributes spe-
cify the assembly where persistent classes are located and the namespace they are declared in.
<hibernate-mapping
schema="schemaName" (1)
default-cascade="none|save-update" (2)
auto-import="true|false" (3)
assembly="Eg" (4)
namespace="Eg" (5)
/>
If you have two persistent classes with the same (unqualified) name, you should set auto-import="false".
NHibernate will throw an exception if you attempt to assign two classes to the same "imported" name.
5.1.3. class
<class
name="ClassName" (1)
table="tableName" (2)
discriminator-value="discriminator_value" (3)
mutable="true|false" (4)
schema="owner" (5)
proxy="ProxyInterface" (6)
dynamic-update="true|false" (7)
dynamic-insert="true|false" (8)
select-before-update="true|false" (9)
polymorphism="implicit|explicit" (10)
where="arbitrary sql where condition" (11)
persister="PersisterClass" (12)
batch-size="N" (13)
optimistic-lock="none|version|dirty|all" (14)
lazy="true|false" (15)
/>
(1) name: The fully qualified .NET class name of the persistent class (or interface), including its assembly
name.
(2) table: The name of its database table.
(3) discriminator-value (optional - defaults to the class name): A value that distiguishes individual sub-
classes, used for polymorphic behaviour. Acceptable values include null and not null.
(4) mutable (optional, defaults to true): Specifies that instances of the class are (not) mutable.
NHibernate 1.2.0 26
Basic O/R Mapping
(5) schema (optional): Override the schema name specified by the root <hibernate-mapping> element.
(6) proxy (optional): Specifies an interface to use for lazy initializing proxies. You may specify the name of
the class itself.
(7) dynamic-update (optional, defaults to false): Specifies that UPDATE SQL should be generated at runtime
and contain only those columns whose values have changed.
(8) dynamic-insert (optional, defaults to false): Specifies that INSERT SQL should be generated at runtime
and contain only the columns whose values are not null.
(9) select-before-update (optional, defaults to false): Specifies that NHibernate should never perform an
SQL UPDATE unless it is certain that an object is actually modified. In certain cases (actually, only when a
transient object has been associated with a new session using update()), this means that NHibernate will
perform an extra SQL SELECT to determine if an UPDATE is actually required.
(10) polymorphism (optional, defaults to implicit): Determines whether implicit or explicit query polymorph-
ism is used.
(11) where (optional) specify an arbitrary SQL WHERE condition to be used when retrieving objects of this class
(12) persister (optional): Specifies a custom IClassPersister.
(13) batch-size (optional, defaults to 1) specify a "batch size" for fetching instances of this class by identifier.
(14) optimistic-lock (optional, defaults to version): Determines the optimistic locking strategy.
(15) lazy (optional): Lazy fetching may be completely disabled by setting lazy="false".
It is perfectly acceptable for the named persistent class to be an interface. You would then declare implement-
ing classes of that interface using the <subclass> element. You may persist any inner class. You should specify
the class name using the standard form ie. Eg.Foo+Bar, Eg. Due to an HQL parser limitation inner classes can
not be used in queries in NHibernate 1.0.
Immutable classes, mutable="false", may not be updated or deleted by the application. This allows NHibern-
ate to make some minor performance optimizations.
The optional proxy attribute enables lazy initialization of persistent instances of the class. NHibernate will ini-
tially return proxies which implement the named interface. The actual persistent object will be loaded when a
method of the proxy is invoked. See "Proxies for Lazy Initialization" below.
Implicit polymorphism means that instances of the class will be returned by a query that names any superclass
or implemented interface or the class and that instances of any subclass of the class will be returned by a query
that names the class itself. Explicit polymorphism means that class instances will be returned only be queries
that explicitly name that class and that queries that name the class will return only instances of subclasses
mapped inside this <class> declaration as a <subclass> or <joined-subclass>. For most purposes the default,
polymorphism="implicit", is appropriate. Explicit polymorphism is useful when two different classes are
mapped to the same table (this allows a "lightweight" class that contains a subset of the table columns).
The persister attribute lets you customize the persistence strategy used for the class. You may, for example,
specify your own subclass of NHibernate.Persister.EntityPersister or you might even provide a com-
pletely new implementation of the interface NHibernate.Persister.IClassPersister that implements per-
sistence via, for example, stored procedure calls, serialization to flat files or LDAP. See NHibern-
ate.DomainModel.CustomPersister for a simple example (of "persistence" to a Hashtable).
Note that the dynamic-update and dynamic-insert settings are not inherited by subclasses and so may also be
specified on the <subclass> or <joined-subclass> elements. These settings may increase performance in
some cases, but might actually decrease performance in others. Use judiciously.
Use of select-before-update will usually decrease performance. It is very useful to prevent a database update
trigger being called unnecessarily.
If you enable dynamic-update, you will have a choice of optimistic locking strategies:
NHibernate 1.2.0 27
Basic O/R Mapping
We very strongly recommend that you use version/timestamp columns for optimistic locking with NHibernate.
This is the optimal strategy with respect to performance and is the only strategy that correctly handles modific-
ations made outside of the session (ie. when ISession.Update() is used). Keep in mind that a version or
timestamp property should never be null, no matter what unsaved-value strategy, or an instance will be detec-
ted as transient.
Beginning with NHibernate 1.2.0, version numbers start with 1, not 0 as in previous versions. This was done to
allow using 0 as unsaved-value for the version property.
5.1.4. id
Mapped classes must declare the primary key column of the database table. Most classes will also have a prop-
erty holding the unique identifier of an instance. The <id> element defines the mapping from that property to
the primary key column.
<id
name="PropertyName" (1)
type="typename" (2)
column="column_name" (3)
unsaved-value="any|none|null|id_value" (4)
access="field|property|nosetter|ClassName(5)">
<generator class="generatorClass"/>
</id>
If the name attribute is missing, it is assumed that the class has no identifier property.
There is an alternative <composite-id> declaration to allow access to legacy data with composite keys. We
strongly discourage its use for anything else.
5.1.4.1. generator
The required <generator> child element names a .NET class used to generate unique identifiers for instances
of the persistent class. If any parameters are required to configure or initialize the generator instance, they are
passed using the <param> element.
NHibernate 1.2.0 28
Basic O/R Mapping
<generator class="NHibernate.Id.TableHiLoGenerator">
<param name="table">uid_table</param>
<param name="column">next_hi_value_column</param>
</generator>
</id>
All generators implement the interface NHibernate.Id.IIdentifierGenerator. This is a very simple inter-
face; some applications may choose to provide their own specialized implementations. However, NHibernate
provides a range of built-in implementations. There are shortcut names for the built-in generators:
increment
generates identifiers of any integral type that are unique only when no other process is inserting data into
the same table. Do not use in a cluster.
identity
supports identity columns in DB2, MySQL, MS SQL Server and Sybase. The identifier returned by the
database is converted to the property type using Convert.ChangeType. Any integral property type is thus
supported.
sequence
uses a sequence in DB2, PostgreSQL, Oracle or a generator in Firebird. The identifier returned by the data-
base is converted to the property type using Convert.ChangeType. Any integral property type is thus sup-
ported.
hilo
uses a hi/lo algorithm to efficiently generate identifiers of any integral type, given a table and column (by
default hibernate_unique_key and next_hi respectively) as a source of hi values. The hi/lo algorithm
generates identifiers that are unique only for a particular database. Do not use this generator with a user-
supplied connection.
seqhilo
uses a hi/lo algorithm to efficiently generate identifiers of any integral type, given a named database se-
quence.
uuid.hex
uses System.Guid and its ToString(string format) method to generate identifiers of type string. The
length of the string returned depends on the configured format.
uuid.string
uses a new System.Guid to create a byte[] that is converted to a string.
guid
uses a new System.Guid as the identifier.
guid.comb
uses the algorithm to generate a new System.Guid described by Jimmy Nilsson in the article ht-
tp://www.informit.com/articles/article.asp?p=25862.
native
picks identity, sequence or hilo depending upon the capabilities of the underlying database.
assigned
lets the application to assign an identifier to the object before Save() is called.
foreign
NHibernate 1.2.0 29
Basic O/R Mapping
uses the identifier of another associated object. Usually used in conjunction with a <one-to-one> primary
key association.
The hilo and seqhilo generators provide two alternate implementations of the hi/lo algorithm, a favorite ap-
proach to identifier generation. The first implementation requires a "special" database table to hold the next
available "hi" value. The second uses an Oracle-style sequence (where supported).
Unfortunately, you can't use hilo when supplying your own IDbConnection to NHibernate. NHibernate must
be able to fetch the "hi" value in a new transaction.
The UUID is generated by calling Guid.NewGuid().ToString(format). The valid values for format are de-
scribed in the MSDN documentation. The default seperator is - and should rarely be modified. The format
determines if the configured seperator can replace the default seperator used by the format.
The UUID is generated by calling Guid.NewGuid().ToByteArray() and then converting the byte[] into a
char[]. The char[] is returned as a String consisting of 16 characters.
The guid identifier is generated by calling Guid.NewGuid(). To address some of the performance concerns with
using Guids as primary keys, foreign keys, and as part of indexes with MS SQL the guid.comb can be used.
The benefit of using the guid.comb with other databases that support GUIDs has not been measured.
For databases which support identity columns (DB2, MySQL, Sybase, MS SQL), you may use identity key
generation. For databases that support sequences (DB2, Oracle, PostgreSQL, Interbase, McKoi, SAP DB) you
may use sequence style key generation. Both these strategies require two SQL queries to insert a new object.
NHibernate 1.2.0 30
Basic O/R Mapping
<generator class="sequence">
<param name="sequence">uid_sequence</param>
</generator>
</id>
For cross-platform development, the native strategy will choose from the identity, sequence and hilo
strategies, dependent upon the capabilities of the underlying database.
If you want the application to assign identifiers (as opposed to having NHibernate generate them), you may use
the assigned generator. This special generator will use the identifier value already assigned to the object's iden-
tifier property. Be very careful when using this feature to assign keys with business meaning (almost always a
terrible design decision).
Due to its inherent nature, entities that use this generator cannot be saved via the ISession's SaveOrUpdate()
method. Instead you have to explicitly specify to NHibernate if the object should be saved or updated by calling
either the Save() or Update() method of the ISession.
5.1.5. composite-id
<composite-id
name="PropertyName"
class="ClassName"
unsaved-value="any|none"
access="field|property|nosetter|ClassName">
For a table with a composite key, you may map multiple properties of the class as identifier properties. The
<composite-id> element accepts <key-property> property mappings and <key-many-to-one> mappings as
child elements.
<composite-id>
<key-property name="MedicareNumber"/>
<key-property name="Dependent"/>
</composite-id>
Your persistent class must override Equals() and GetHashCode() to implement composite identifier equality. It
must also be Serializable.
Unfortunately, this approach to composite identifiers means that a persistent object is its own identifier. There
is no convenient "handle" other than the object itself. You must instantiate an instance of the persistent class it-
self and populate its identifier properties before you can load() the persistent state associated with a composite
key. We will describe a much more convenient approach where the composite identifier is implemented as a
seperate class in Section 7.4, “Components as composite identifiers”. The attributes described below apply only
to this alternative approach:
• name (optional, required for this approach): A property of component type that holds the composite identifi-
er (see next section).
NHibernate 1.2.0 31
Basic O/R Mapping
• access (optional - defaults to property): The strategy NHibernate should use for accessing the property
value.
• class(optional - defaults to the property type determined by reflection): The component class used as a
composite identifier (see next section).
5.1.6. discriminator
The <discriminator> element is required for polymorphic persistence using the table-per-class-hierarchy map-
ping strategy and declares a discriminator column of the table. The discriminator column contains marker val-
ues that tell the persistence layer what subclass to instantiate for a particular row. A restricted set of types may
be used: String, Char, Int32, Byte, Short, Boolean, YesNo, TrueFalse.
<discriminator
column="discriminator_column" (1)
type="discriminator_type" (2)
force="true|false" (3)
insert="true|false" (4)
formula="arbitrary SQL expressi(5)on"
/>
(1) column (optional - defaults to class) the name of the discriminator column.
(2) type (optional - defaults to String) a name that indicates the NHibernate type
(3) force (optional - defaults to false) "force" NHibernate to specify allowed discriminator values even
when retrieving all instances of the root class.
(4) insert (optional - defaults to true) set this to false if your discriminator column is also part of a mapped
composite identifier.
(5) formula (optional) an arbitrary SQL expression that is executed when a type has to be evaluated. Allows
content-based discrimination.
Actual values of the discriminator column are specified by the discriminator-value attribute of the <class>
and <subclass> elements.
The force attribute is (only) useful if the table contains rows with "extra" discriminator values that are not
mapped to a persistent class. This will not usually be the case.
Using the formula attribute you can declare an arbitrary SQL expression that will be used to evaluate the type
of a row:
<discriminator
formula="case when CLASS_TYPE in ('a', 'b', 'c') then 0 else 1 end"
type="Int32"/>
The <version> element is optional and indicates that the table contains versioned data. This is particularly use-
ful if you plan to use long transactions (see below).
<version
column="version_column" (1)
name="PropertyName" (2)
type="typename" (3)
access="field|property|nosetter|ClassName" (4)
unsaved-value="null|negative|undefined|value" (5)
generated="never|always" (6)
/>
NHibernate 1.2.0 32
Basic O/R Mapping
(1) column (optional - defaults to the property name): The name of the column holding the version number.
(2) name: The name of a property of the persistent class.
(3) type (optional - defaults to Int32): The type of the version number.
(4) access (optional - defaults to property): The strategy NHibernate should use for accessing the property
value.
(5) unsaved-value (optional - defaults to a "sensible" value): A version property value that indicates that an
instance is newly instantiated (unsaved), distinguishing it from transient instances that were saved or
loaded in a previous session. (undefined specifies that the identifier property value should be used.)
(6) generated (optional - defaults to never): Specifies that this version property value is actually generated
by the database. See the discussion of Section 5.5, “Generated Properties”.
Version numbers may be of type Int64, Int32, Int16, Ticks, Timestamp, or TimeSpan (or their nullable coun-
terparts in .NET 2.0).
The optional <timestamp> element indicates that the table contains timestamped data. This is intended as an al-
ternative to versioning. Timestamps are by nature a less safe implementation of optimistic locking. However,
sometimes the application might use the timestamps in other ways.
<timestamp
column="timestamp_column" (1)
name="PropertyName" (2)
access="field|property|nosetter|Clas(3)sName"
unsaved-value="null|undefined|value"(4)
generated="never|always" (5)
/>
(1) column (optional - defaults to the property name): The name of a column holding the timestamp.
(2) name: The name of a property of .NET type DateTime of the persistent class.
(3) access (optional - defaults to property): The strategy NHibernate should use for accessing the property
value.
(4) unsaved-value (optional - defaults to null): A timestamp property value that indicates that an instance is
newly instantiated (unsaved), distinguishing it from transient instances that were saved or loaded in a pre-
vious session. (undefined specifies that the identifier property value should be used.)
(5) generated (optional - defaults to never): Specifies that this timestamp property value is actually gener-
ated by the database. See the discussion of Section 5.5, “Generated Properties”.
5.1.9. property
<property
name="propertyName" (1)
column="column_name" (2)
type="typename" (3)
update="true|false" (4)
insert="true|false" (4)
formula="arbitrary SQL expression" (5)
access="field|property|ClassName" (6)
optimistic-lock="true|false" (7)
generated="never|insert|always" (8)
/>
NHibernate 1.2.0 33
Basic O/R Mapping
(2) column (optional - defaults to the property name): the name of the mapped database table column.
(3) type (optional): a name that indicates the NHibernate type.
(4) update, insert (optional - defaults to true) : specifies that the mapped columns should be included in
SQL UPDATE and/or INSERT statements. Setting both to false allows a pure "derived" property whose
value is initialized from some other property that maps to the same column(s) or by a trigger or other ap-
plication.
(5) formula (optional): an SQL expression that defines the value for a computed property. Computed proper-
ties do not have a column mapping of their own.
(6) access (optional - defaults to property): The strategy NHibernate should use for accessing the property
value.
(7) optimistic-lock (optional - defaults to true): Specifies that updates to this property do or do not require
acquisition of the optimistic lock. In other words, determines if a version increment should occur when
this property is dirty.
(8) generated (optional - defaults to never): Specifies that this property value is actually generated by the
database. See the discussion of Section 5.5, “Generated Properties”.
1. The name of a NHibernate basic type (eg. Int32, String, Char, DateTime, Timestamp, Single,
Byte[], Object, ...).
2. The name of a .NET type with a default basic type (eg. System.Int16, System.Single, System.Char,
System.String, System.DateTime, System.Byte[], ...).
3. The name of an enumeration type (eg. Eg.Color, Eg).
4. The name of a serializable .NET type.
5. The class name of a custom type (eg. Illflow.Type.MyCustomType).
Note that you have to specify full assembly-qualified names for all except basic NHibernate types (unless you
set assembly and/or namespace attributes of the <hibernate-mapping> element).
NHibernate supports .NET 2.0 Nullable types. These types are mostly treated the same as plain non-Nullable
types internally. For example, a property of type Nullable<Int32> can be mapped using type="Int32" or
type="System.Int32".
If you do not specify a type, NHibernate will use reflection upon the named property to take a guess at the cor-
rect NHibernate type. NHibernate will try to interpret the name of the return class of the property getter using
rules 2, 3, 4 in that order. However, this is not always enough. In certain cases you will still need the type at-
tribute. (For example, to distinguish between NHibernateUtil.DateTime and NHibernateUtil.Timestamp, or
to specify a custom type.)
The access attribute lets you control how NHibernate will access the value of the property at runtime. The
value of the access attribute should be text formatted as access-strategy.naming-strategy. The
.naming-strategy is not always required.
property
The default implementation. NHibernate uses the get/
set accessors of the property. No naming strategy
should be used with this access strategy because the
value of the name attribute is the name of the prop-
erty.
NHibernate 1.2.0 34
Basic O/R Mapping
field
NHibernate will access the field directly. NHibernate
uses the value of the name attribute as the name of the
field. This can be used when a property's getter and
setter contain extra actions that you don't want to oc-
cur when NHibernate is populating or reading the ob-
ject. If you want the name of the property and not the
field to be what the consumers of your API use with
HQL, then a naming strategy is needed.
nosetter
NHibernate will access the field directly when setting
the value and will use the Property when getting the
value. This can be used when a property only exposes
a get accessor because the consumers of your API
can't change the value directly. A naming strategy is
required because NHibernate uses the value of the
name attribute as the property name and needs to be
told what the name of the field is.
ClassName
If NHibernate's built in access strategies are not what
is needed for your situation then you can build your
own by implementing the interface NHibern-
ate.Property.IPropertyAccessor. The value of the
access attribute should be an assembly-qualified
name that can be loaded with Activat-
or.CreateInstance(string assemblyQualified-
Name).
camelcase
The name attribute is converted to camel case to find
the field. <property name="Foo" ... > uses the
field foo.
camelcase-underscore
The name attribute is converted to camel case and pre-
fixed with an underscore to find the field. <property
name="Foo" ... > uses the field _foo.
lowercase
The name attribute is converted to lower case to find
the Field. <property name="FooBar" ... > uses the
field foobar.
lowercase-underscore
The name attribute is converted to lower case and pre-
fixed with an underscore to find the Field. <property
name="FooBar" ... > uses the field _foobar.
NHibernate 1.2.0 35
Basic O/R Mapping
pascalcase-underscore
The name attribute is prefixed with an underscore to
find the field. <property name="Foo" ... > uses the
field _Foo.
pascalcase-m
The name attribute is prefixed with the character m to
find the field. <property name="Foo" ... > uses the
field mFoo.
pascalcase-m-underscore
The name attribute is prefixed with the character m and
an underscore to find the field. <property
name="Foo" ... > uses the field m_Foo.
5.1.10. many-to-one
An ordinary association to another persistent class is declared using a many-to-one element. The relational
model is a many-to-one association. (It's really just an object reference.)
<many-to-one
name="PropertyName" (1)
column="column_name" (2)
class="ClassName" (3)
cascade="all|none|save-update|delete" (4)
fetch="join|select" (5)
update="true|false" (6)
insert="true|false" (6)
property-ref="PropertyNameFromAssociatedClass" (7)
access="field|property|nosetter|ClassName" (8)
unique="true|false" (9)
optimistic-lock="true|false" (10)
not-found="ignore|exception" (11)
/>
NHibernate 1.2.0 36
Basic O/R Mapping
(11) not-found (optional - defaults to exception): Specifies how foreign keys that reference missing rows will
be handled: ignore will treat a missing row as a null association.
The cascade attribute permits the following values: all, save-update, delete, none. Setting a value other than
none will propagate certain operations to the associated (child) object. See "Lifecycle Objects" below.
The property-ref attribute should only be used for mapping legacy data where a foreign key refers to a unique
key of the associated table other than the primary key. This is an ugly relational model. For example, suppose
the Product class had a unique serial number, that is not the primary key. (The unique attribute controls
NHibernate's DDL generation with the SchemaExport tool.)
5.1.11. one-to-one
<one-to-one
name="PropertyName" (1)
class="ClassName" (2)
cascade="all|none|save-update|delete" (3)
constrained="true|false" (4)
fetch="join|select" (5)
property-ref="PropertyNameFromAssociatedClass" (6)
access="field|property|nosetter|ClassName" (7)
/>
NHibernate 1.2.0 37
Basic O/R Mapping
Primary key associations don't need an extra table column; if two rows are related by the association then the
two table rows share the same primary key value. So if you want two objects to be related by a primary key as-
sociation, you must make sure that they are assigned the same identifier value!
For a primary key association, add the following mappings to Employee and Person, respectively.
Now we must ensure that the primary keys of related rows in the PERSON and EMPLOYEE tables are equal.
We use a special NHibernate identifier generation strategy called foreign:
A newly saved instance of Person is then assigned the same primar key value as the Employee instance refered
with the Employee property of that Person.
Alternatively, a foreign key with a unique constraint, from Employee to Person, may be expressed as:
And this association may be made bidirectional by adding the following to the Person mapping:
The <component> element maps properties of a child object to columns of the table of a parent class. Compon-
ents may, in turn, declare their own properties, components or collections. See "Components" below.
<component
name="PropertyName" (1)
class="ClassName" (2)
insert="true|false" (3)
upate="true|false" (4)
access="field|property|nosetter|ClassName" (5)
optimistic-lock="true|false" (6)
>
<property ...../>
<many-to-one .... />
NHibernate 1.2.0 38
Basic O/R Mapping
........
</component>
The child <property> tags map properties of the child class to table columns.
The <component> element allows a <parent> subelement that maps a property of the component class as a ref-
erence back to the containing entity.
The <dynamic-component> element allows an IDictionary to be mapped as a component, where the property
names refer to keys of the dictionary.
5.1.13. subclass
Finally, polymorphic persistence requires the declaration of each subclass of the root persistent class. For the
(recommended) table-per-class-hierarchy mapping strategy, the <subclass> declaration is used.
<subclass
name="ClassName" (1)
discriminator-value="discriminator_value" (2)
proxy="ProxyInterface" (3)
lazy="true|false" (4)
dynamic-update="true|false"
dynamic-insert="true|false">
(1) name: The fully qualified .NET class name of the subclass, including its assembly name.
(2) discriminator-value (optional - defaults to the class name): A value that distiguishes individual sub-
classes.
(3) proxy (optional): Specifies a class or interface to use for lazy initializing proxies.
(4) lazy (optional, defaults to true): Setting lazy="false" disables the use of lazy fetching.
Each subclass should declare its own persistent properties and subclasses. <version> and <id> properties are
assumed to be inherited from the root class. Each subclass in a hierarchy must define a unique discriminator-
value. If none is specified, the fully qualified .NET class name is used.
5.1.14. joined-subclass
Alternatively, a subclass that is persisted to its own table (table-per-subclass mapping strategy) is declared us-
ing a <joined-subclass> element.
<joined-subclass
name="ClassName" (1)
NHibernate 1.2.0 39
Basic O/R Mapping
proxy="ProxyInterface" (2)
lazy="true|false" (3)
dynamic-update="true|false"
dynamic-insert="true|false">
No discriminator column is required for this mapping strategy. Each subclass must, however, declare a table
column holding the object identifier using the <key> element. The mapping at the start of the chapter would be
re-written as:
<?xml version="1.0"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Eg"
namespace="Eg">
<class name="Dog">
<!-- mapping for Dog could go here -->
</class>
</hibernate-mapping>
5.1.16. import
Suppose your application has two persistent classes with the same name, and you don't want to specify the fully
qualified name in NHibernate queries. Classes may be "imported" explicitly, rather than relying upon auto-
import="true". You may even import classes and interfaces that are not explicitly mapped.
NHibernate 1.2.0 40
Basic O/R Mapping
<import
class="ClassName" (1)
rename="ShortName" (2)
/>
(1) class: The fully qualified class name of any .NET class, including its assembly name.
(2) rename (optional - defaults to the unqualified class name): A name that may be used in the query lan-
guage.
To understand the behaviour of various .NET language-level objects with respect to the persistence service, we
need to classify them into two groups:
An entity exists independently of any other objects holding references to the entity. Contrast this with the usual
Java model where an unreferenced object is garbage collected. Entities must be explicitly saved and deleted
(except that saves and deletions may be cascaded from a parent entity to its children). This is different from the
ODMG model of object persistence by reachability - and corresponds more closely to how application objects
are usually used in large systems. Entities support circular and shared references. They may also be versioned.
An entity's persistent state consists of references to other entities and instances of value types. Values are prim-
itives, collections, components and certain immutable objects. Unlike entities, values (in particular collections
and components) are persisted and deleted by reachability. Since value objects (and primitives) are persisted
and deleted along with their containing entity they may not be independently versioned. Values have no inde-
pendent identity, so they cannot be shared by two entities or collections.
All NHibernate types except collections support null semantics if the .NET type is nullable (i.e. not derived
from System.ValueType).
Up until now, we've been using the term "persistent class" to refer to entities. We will continue to do that.
Strictly speaking, however, not all user-defined classes with persistent state are entities. A component is a user
defined class with value semantics.
The basic types may be roughly categorized into three groups - System.ValueType types, System.Object
types, and System.Object types for large objects. Just like the .NET Types, columns for System.ValueType
types can not store null values and System.Object types can store null values.
NHibernate 1.2.0 41
Basic O/R Mapping
NHibernate 1.2.0 42
Basic O/R Mapping
NHibernate supports some additional type names for compatibility with Hibernate (useful for those coming
over from Hibernate or using some of the tools to generate hbm.xml files). A type="integer" or type="int"
will map to an Int32 NHibernate type, type="short" to an Int16 NHibernateType. To see all of the conver-
sions you can view the source of static constructor of the class NHibernate.Type.TypeFactory.
NHibernate 1.2.0 43
Basic O/R Mapping
It is relatively easy for developers to create their own value types. For example, you might want to persist prop-
erties of type Int64 to VARCHAR columns. NHibernate does not provide a built-in type for this. But custom types
are not limited to mapping a property (or collection element) to a single table column. So, for example, you
might have a property Name { get; set; } of type String that is persisted to the columns FIRST_NAME, INI-
TIAL, SURNAME.
You may even supply parameters to an IUserType in the mapping file. To do this, your IUserType must imple-
ment the NHibernate.UserTypes.IParameterizedType interface. To supply parameters to your custom type,
you can use the <type> element in your mapping files.
<property name="priority">
<type name="MyCompany.UserTypes.DefaultValueIntegerType">
<param name="default">0</param>
</type>
</property>
The IUserType can now retrieve the value for the parameter named default from the IDictionary object
passed to it.
Even though NHibernate's rich range of built-in types and support for components means you will very rarely
need to use a custom type, it is nevertheless considered good form to use custom types for (non-entity) classes
that occur frequently in your application. For example, a MonetaryAmount class is a good candidate for an
ICompositeUserType, even though it could easily be mapped as a component. One motivation for this is ab-
straction. With a custom type, your mapping documents would be future-proofed against possible changes in
your way of representing monetary values.
There is one further type of property mapping. The <any> mapping element defines a polymorphic association
to classes from multiple tables. This type of mapping always requires more than one column. The first column
holds the type of the associated entity. The remaining columns hold the identifier. It is impossible to specify a
foreign key constraint for this kind of association, so this is most certainly not meant as the usual way of map-
ping (polymorphic) associations. You should use this only in very special cases (eg. audit logs, user session
data, etc).
The meta-type attribute lets the application specify a custom type that maps database column values to persist-
NHibernate 1.2.0 44
Basic O/R Mapping
ent classes which have identifier properties of the type specified by id-type. If the meta-type returns instances
of System.Type, nothing else is required. On the other hand, if it is a basic type like String or Char, you must
specify the mapping from values to classes.
<any
name="PropertyName" (1)
id-type="idtypename" (2)
meta-type="metatypename" (3)
cascade="none|all|save-update" (4)
access="field|property|nosetter|ClassName" (5)
optimistic-lock="true|false" (6)
>
<meta-value ... />
<meta-value ... />
.....
<column .... />
<column .... />
.....
</any>
NHibernate 1.2.0 45
Basic O/R Mapping
<hibernate-mapping>
<subclass name="Eg.Subclass.DomesticCat, Eg"
extends="Eg.Cat, Eg" discriminator-value="D">
<property name="name" type="string"/>
</subclass>
</hibernate-mapping>
Properties marked as generated must additionally be non-insertable and non-updateable. Only Section 5.1.7,
“version (optional)”, Section 5.1.8, “timestamp (optional)”, and Section 5.1.9, “property” can be marked as
generated.
never (the default) - means that the given property value is not generated within the database.
insert - states that the given property value is generated on insert, but is not regenerated on subsequent up-
dates. Things like created-date would fall into this category. Note that even though Section 5.1.7, “version
(optional)” and Section 5.1.8, “timestamp (optional)” properties can be marked as generated, this option is not
available there...
always - states that the property value is generated both on insert and on update.
The first mode is to explicitly list the CREATE and DROP commands out in the mapping file:
<nhibernate-mapping>
...
<database-object>
<create>CREATE TRIGGER my_trigger ...</create>
<drop>DROP TRIGGER my_trigger</drop>
</database-object>
</nhibernate-mapping>
The second mode is to supply a custom class which knows how to construct the CREATE and DROP com-
mands. This custom class must implement the NHibernate.Mapping.IAuxiliaryDatabaseObject interface.
<hibernate-mapping>
...
<database-object>
<definition class="MyTriggerDefinition, MyAssembly"/>
</database-object>
</hibernate-mapping>
NHibernate 1.2.0 46
Basic O/R Mapping
Additionally, these database objects can be optionally scoped such that they only apply when certain dialects
are used.
<hibernate-mapping>
...
<database-object>
<definition class="MyTriggerDefinition"/>
<dialect-scope name="NHibernate.Dialect.Oracle9Dialect"/>
<dialect-scope name="NHibernate.Dialect.OracleDialect"/>
</database-object>
</hibernate-mapping>
NHibernate 1.2.0 47
Chapter 6. Collection Mapping
Notice how we initialized the instance variable with an instance of HashedSet. This is the best way to initialize
collection valued properties of newly instantiated (non-persistent) instances. When you make the instance per-
sistent - by calling Save(), for example - NHibernate will actually replace the HashedSet with an instance of
NHibernate's own implementation of ISet. Watch out for errors like this:
Collection instances have the usual behavior of value types. They are automatically persisted when referenced
by a persistent object and automatically deleted when unreferenced. If a collection is passed from one persistent
object to another, its elements might be moved from one table to another. Two entities may not share a refer-
ence to the same collection instance. Due to the underlying relational model, collection-valued properties do
not support null value semantics; NHibernate does not distinguish between a null collection reference and an
empty collection.
You shouldn't have to worry much about any of this. Just use NHibernate's collections the same way you use
ordinary .NET collections, but make sure you understand the semantics of bidirectional associations (discussed
later) before using them.
NHibernate 1.2.0 48
Collection Mapping
Collection instances are distinguished in the database by a foreign key to the owning entity. This foreign key is
referred to as the collection key . The collection key is mapped by the <key> element.
Collections may contain almost any other NHibernate type, including all basic types, custom types, entity types
and components. This is an important definition: An object in a collection can either be handled with "pass by
value" semantics (it therefore fully depends on the collection owner) or it can be a reference to another entity
with an own lifecycle. Collections may not contain other collections. The contained type is referred to as the
collection element type. Collection elements are mapped by <element>, <composite-element>,
<one-to-many>, <many-to-many> or <many-to-any>. The first two map elements with value semantics, the oth-
er three are used to map entity associations.
All collection types except ISet and bag have an index column - a column that maps to an array or IList index
or IDictionary key. The index of an IDictionary may be of any basic type, an entity type or even a composite
type (it may not be a collection). The index of an array or list is always of type Int32. Indexes are mapped us-
ing <index>, <index-many-to-many>, <composite-index> or <index-many-to-any>.
There are quite a range of mappings that can be generated for collections, covering many common relational
models. We suggest you experiment with the schema generation tool to get a feeling for how various mapping
declarations translate to database tables.
<map
name="propertyName" (1)
table="table_name" (2)
schema="schema_name" (3)
lazy="true|false" (4)
inverse="true|false" (5)
cascade="all|none|save-update|delete|all-delete-orphan" (6)
sort="unsorted|natural|comparatorClass" (7)
order-by="column_name asc|desc" (8)
where="arbitrary sql where condition" (9)
fetch="select|join" (10)
batch-size="N" (11)
access="field|property|ClassName" (12)
optimistic-lock="true|false" (13)
generic="true|false" (14)
>
NHibernate 1.2.0 49
Collection Mapping
(8) order-by (optional) specify a table column (or columns) that define the iteration order of the IDiction-
ary, ISet or bag, together with an optional asc or desc
(9) where (optional) specify an arbitrary SQL WHERE condition to be used when retrieving or removing the
collection (useful if the collection should contain only a subset of the available data)
(10) fetch (optional) Choose between outer-join fetching and fetching by sequential select.
(11) batch-size (optional, defaults to 1) specify a "batch size" for lazily fetching instances of this collection.
(12) access (optional - defaults to property): The strategy NHibernate should use for accessing the property
value.
(13) optimistic-lock (optional - defaults to true): Species that changes to the state of the collection results in
increment of the owning entity's version. (For one to many associations, it is often reasonable to disable
this setting.)
(14) generic (optional): Choose between generic and non-generic collection interface. If this option is not spe-
cified, NHibernate will use reflection to choose the interface.
The mapping of an IList or array requires a seperate table column holding the array or list index (the i in
foo[i]). If your relational model doesn't have an index column, e.g. if you're working with legacy data, use an
unordered ISet instead. This seems to put people off who assume that IList should just be a more convenient
way of accessing an unordered collection. NHibernate collections strictly obey the actual semantics attached to
the ISet, IList and IDictionary interfaces. IList elements don't just spontaneously rearrange themselves!
On the other hand, people who planned to use the IList to emulate bag semantics have a legitimate grievance
here. A bag is an unordered, unindexed collection which may contain the same element multiple times. The
.NET collections framework lacks an IBag interface, hence you have to emulate it with an IList. NHibernate
lets you map properties of type IList or ICollection with the <bag> element. Note that bag semantics are not
really part of the ICollection contract and they actually conflict with the semantics of the IList contract
(however, you can sort the bag arbitrarily, discussed later in this chapter).
Note: Large NHibernate bags mapped with inverse="false" are inefficient and should be avoided; NHibern-
ate can't create, delete or update rows individually, because there is no key that may be used to identify an indi-
vidual row.
The foreign key from the collection table to the table of the owning class is declared using a <key> element.
<key column="column_name"/>
For indexed collections like maps and lists, we require an <index> element. For lists, this column contains se-
quential integers numbered from zero. Make sure that your index really starts from zero if you have to deal with
legacy data. For maps, the column may contain any values of any NHibernate type.
<index
column="column_name" (1)
type="typename" (2)
/>
(1) column (required): The name of the column holding the collection index values.
(2) type (optional, defaults to Int32): The type of the collection index.
NHibernate 1.2.0 50
Collection Mapping
Alternatively, a map may be indexed by objects of entity type. We use the <index-many-to-many> element.
<index-many-to-many
column="column_name" (1)
class="ClassName" (2)
/>
(1) column (required): The name of the foreign key column for the collection index values.
(2) class (required): The entity class used as the collection index.
<element
column="column_name" (1)
type="typename" (2)
/>
(1) column (required): The name of the column holding the collection element values.
(2) type (required): The type of the collection element.
A collection of entities with its own table corresponds to the relational notion of many-to-many association. A
many to many association is the most natural mapping of a .NET collection but is not usually the best relational
model.
<many-to-many
column="column_name" (1)
class="ClassName" (2)
fetch="join|select" (3)
not-found="ignore|exception" (4)
/>
(1) column (required): The name of the element foreign key column.
(2) class (required): The name of the associated class.
(3) fetch (optional, defaults to join): enables outer-join or sequential select fetching for this association.
This is a special case; for full eager fetching (in a single SELECT) of an entity and its many-to-many rela-
tionships to other entities, you would enable join fetching not only of the collection itself, but also with
this attribute on the <many-to-many> nested element.
(4) not-found (optional - defaults to exception): Specifies how foreign keys that reference missing rows will
be handled: ignore will treat a missing row as a null association.
A bag containing integers (with an iteration order determined by the order-by attribute):
An array of entities - in this case, a many to many association (note that the entities are lifecycle objects, cas-
cade="all"):
NHibernate 1.2.0 51
Collection Mapping
<index column="I"/>
<many-to-many column="FOO_ID" class="Eg.Foo, Eg"/>
</array>
An association from Foo to Bar requires the addition of a key column and possibly an index column to the table
of the contained entity class, Bar. These columns are mapped using the <key> and <index> elements described
above.
<one-to-many
class="ClassName" (1)
not-found="ignore|exception" (2)
/>
Example:
<set name="Bars">
<key column="foo_id"/>
<one-to-many class="Eg.Bar, Eg"/>
</set>
Notice that the <one-to-many> element does not need to declare any columns. Nor is it necessary to specify the
NHibernate 1.2.0 52
Collection Mapping
Very Important Note: If the <key> column of a <one-to-many> association is declared NOT NULL, NHibernate
may cause constraint violations when it creates or updates the association. To prevent this problem, you must
use a bidirectional association with the many valued end (the set or bag) marked as inverse="true". See the
discussion of bidirectional associations later in this chapter.
s = sessions.OpenSession();
ITransaction tx = sessions.BeginTransaction();
User u = (User) s.Find("from User u where u.Name=?", userName, NHibernateUtil.String)[0];
IDictionary permissions = u.Permissions;
tx.Commit();
s.Close();
It could be in for a nasty surprise. Since the permissions collection was not initialized when the ISession was
committed, the collection will never be able to load its state. The fix is to move the line that reads from the col-
lection to just before the commit. (There are other more advanced ways to solve this problem, however.)
Alternatively, use a non-lazy collection. Since lazy initialization can lead to bugs like that above, non-laziness
is the default. However, it is intended that lazy initialization be used for almost all collections, especially for
collections of entities (for reasons of efficiency).
Exceptions that occur while lazily initializing a collection are wrapped in a LazyInitializationException.
In some application architectures, particularly where the code that accesses data using NHibernate, and the
code that uses it are in different application layers, it can be a problem to ensure that the ISession is open when
a collection is initialized. There are two basic ways to deal with this issue:
• In a web-based application, an event handler can be used to close the ISession only at the very end of a
user request, once the rendering of the view is complete. Of course, this places heavy demands upon the
correctness of the exception handling of your application infrastructure. It is vitally important that the ISes-
sion is closed and the transaction ended before returning to the user, even when an exception occurs during
rendering of the view. The event handler has to be able to access the ISession for this approach. We re-
commend that the current ISession is stored in the HttpContext.Items collection (see chapter 1, Sec-
tion 1.4, “Playing with cats”, for an example implementation).
• In an application with a seperate business tier, the business logic must "prepare" all collections that will be
needed by the web tier before returning. This means that the business tier should load all the data and return
all the data already initialized to the presentation/web tier that is required for a particular use case. Usually,
NHibernate 1.2.0 53
Collection Mapping
the application calls NHibernateUtil.Initialize() for each collection that will be needed in the web tier
(this call must occur before the session is closed) or retrieves the collection eagerly using a NHibernate
query with a FETCH clause.
• You may also attach a previously loaded object to a new ISession with Update() or Lock() before access-
ing unitialized collections (or other proxies). NHibernate can not do this automatically, as it would intro-
duce ad hoc transaction semantics!
You can use the Filter() method of the NHibernate ISession API to get the size of a collection without initial-
izing it:
Filter() or CreateFilter() are also used to efficiently retrieve subsets of a collection without needing to ini-
tialize the whole collection.
Allowed values of the sort attribute are unsorted, natural and the name of a class implementing Sys-
tem.Collections.IComparer.
If you want the database itself to order the collection elements use the order-by attribute of set, bag or map
mappings. This performs the ordering in the SQL query, not in memory.
Setting the order-by attribute tells NHibernate to use ListDictionary or ListSet class internally for diction-
aries and sets, maintaining the order of the elements. Note that lookup operations on these collections are very
slow if they contain more than a few elements.
Note that the value of the order-by attribute is an SQL ordering, not a HQL ordering!
NHibernate 1.2.0 54
Collection Mapping
Associations may even be sorted by some arbitrary criteria at runtime using a Filter().
The <idbag> element lets you map a List (or Collection) with bag semantics.
As you can see, an <idbag> has a synthetic id generator, just like an entity class! A different surrogate key is
assigned to each collection row. NHibernate does not provide any mechanism to discover the surrogate key
value of a particular row, however.
Note that the update performance of an <idbag> is much better than a regular <bag>! NHibernate can locate in-
dividual rows efficiently and update or delete them individually, just like a list, map or set.
In the current implementation, the native identifier generation strategy is not supported for <idbag> collection
identifiers.
one-to-many
set or bag valued at one end, single-valued at the other
many-to-many
set or bag valued at both ends
Please note that NHibernate does not support bidirectional one-to-many associations with an indexed collection
(list, map or array) as the "many" end, you have to use a set or bag mapping.
You may specify a bidirectional many-to-many association simply by mapping two many-to-many associations
to the same database table and declaring one end as inverse (which one is your choice). Here's an example of a
bidirectional many-to-many association from a class back to itself (each category can have many items and
each item can be in many categories):
NHibernate 1.2.0 55
Collection Mapping
Changes made only to the inverse end of the association are not persisted. This means that NHibernate has two
representations in memory for every bidirectional association, one link from A to B and another link from B to
A. This is easier to understand if you think about the .NET object model and how we create a many-to-many re-
lationship in C#:
The non-inverse side is used to save the in-memory representation to the database. We would get an unnec-
cessary INSERT/UPDATE and probably even a foreign key violation if both would trigger changes! The same
is of course also true for bidirectional one-to-many associations.
You may map a bidirectional one-to-many association by mapping a one-to-many association to the same table
column(s) as a many-to-one association and declaring the many-valued end inverse="true".
Mapping one end of an association with inverse="true" doesn't affect the operation of cascades, both are dif-
ferent concepts!
NHibernate 1.2.0 56
Collection Mapping
using System;
using System.Collections;
namespace Eg
public long Id
{
get { return id; }
set { id = value; }
}
....
....
}
}
has a collection of Eg.Child instances. If each child has at most one parent, the most natural mapping is a one-
to-many association:
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
assembly="Eg" namespace="Eg">
<class name="Parent">
<id name="Id">
<generator class="sequence"/>
</id>
<set name="Children" lazy="true">
<key column="parent_id"/>
<one-to-many class="Child"/>
NHibernate 1.2.0 57
Collection Mapping
</set>
</class>
<class name="Child">
<id name="Id">
<generator class="sequence"/>
</id>
<property name="Name"/>
</class>
</hibernate-mapping>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
assembly="Eg" namespace="Eg">
<class name="Parent">
<id name="Id">
<generator class="sequence"/>
</id>
<set name="Children" inverse="true" lazy="true">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
</class>
<class name="Child">
<id name="Id">
<generator class="sequence"/>
</id>
<property name="Name"/>
<many-to-one name="parent" class="Parent" column="parent_id" not-null="true"/>
</class>
</hibernate-mapping>
On the other hand, if a child might have multiple parents, a many-to-many association is appropriate:
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
assembly="Eg" namespace="Eg">
<class name="Parent">
<id name="Id">
<generator class="sequence"/>
</id>
<set name="Children" lazy="true" table="childset">
<key column="parent_id"/>
<many-to-many class="Child" column="child_id"/>
</set>
</class>
NHibernate 1.2.0 58
Collection Mapping
<class name="eg.Child">
<id name="Id">
<generator class="sequence"/>
</id>
<property name="Name"/>
</class>
</hibernate-mapping>
Table definitions:
NHibernate 1.2.0 59
Chapter 7. Component Mapping
The notion of a component is re-used in several different contexts, for different purposes, throughout NHibern-
ate.
NHibernate 1.2.0 60
Component Mapping
Now Name may be persisted as a component of Person. Notice that Name defines getter and setter methods for
its persistent properties, but doesn't need to declare any interfaces or identifier properties.
The person table would have the columns pid, Birthday, Initial, First and Last.
Like all value types, components do not support shared references. The null value semantics of a component
are ad hoc. When reloading the containing object, NHibernate will assume that if all component columns are
null, then the entire component is null. This should be okay for most purposes.
The properties of a component may be of any NHibernate type (collections, many-to-one associations, other
components, etc). Nested components should not be considered an exotic usage. NHibernate is intended to sup-
port a very fine-grained object model.
The <component> element allows a <parent> subelement that maps a property of the component class as a ref-
erence back to the containing entity.
Note: if you define an ISet of composite elements, it is very important to implement Equals() and GetHash-
Code() correctly.
NHibernate 1.2.0 61
Component Mapping
Composite elements may contain components but not collections. If your composite element itself contains
components, use the <nested-composite-element> tag. This is a pretty exotic case - a collection of compon-
ents which themselves have components. By this stage you should be asking yourself if a one-to-many associ-
ation is more appropriate. Try remodelling the composite element as an entity - but note that even though the
object model is the same, the relational model and persistence semantics are still slightly different.
Please note that a composite element mapping doesn't support null-able properties if you're using a <set>.
NHibernate has to use each columns value to identify a record when deleting objects (there is no separate
primary key column in the composite element table), which is not possible with null values. You have to either
use only not-null properties in a composite-element or choose a <list>, <map>, <bag> or <idbag>.
A special case of a composite element is a composite element with a nested <many-to-one> element. A map-
ping like this allows you to map extra columns of a many-to-many association table to the composite element
class. The following is a many-to-many association from Order to Item where PurchaseDate, Price and
Quantity are properties of the association:
Composite elements may appear in queries using the same syntax as associations to other entities.
• It must be Serializable.
• It must re-implement Equals() and GetHashCode(), consistently with the database's notion of composite
NHibernate 1.2.0 62
Component Mapping
key equality.
You can't use an IIdentifierGenerator to generate composite keys. Instead the application must assign its
own identifiers.
Since a composite identifier must be assigned to the object before saving it, we can't use unsaved-value of the
identifier to distinguish between newly instantiated instances and instances saved in a previous session.
You may instead implement IInterceptor.IsUnsaved() if you wish to use SaveOrUpdate() or cascading save
/ update. As an alternative, you may also set the unsaved-value attribute on a <version> (or <timestamp>) ele-
ment to specify a value that indicates a new transient instance. In this case, the version of the entity is used in-
stead of the (assigned) identifier and you don't have to implement IInterceptor.IsUnsaved() yourself.
Use the <composite-id> tag (same attributes and elements as <component>) in place of <id> for the declaration
of a composite identifier class:
Now, any foreign keys into the table FOOS are also composite. You must declare this in your mappings for other
classes. An association to Foo would be declared like this:
This new <column> tag is also used by multi-column custom types. Actually it is an alternative to the column at-
tribute everywhere. A collection with elements of type Foo would use:
<set name="Foos">
<key column="owner_id"/>
<many-to-many class="Foo">
<column name="foo_string"/>
<column name="foo_short"/>
<column name="foo_date"/>
</many-to-many>
</set>
If Foo itself contains collections, they will also need a composite foreign key.
<class name="Foo">
....
....
<set name="Dates" lazy="true">
<key> <!-- a collection inherits the composite key type -->
<column name="foo_string"/>
<column name="foo_short"/>
<column name="foo_date"/>
</key>
<element column="foo_date" type="Date"/>
</set>
NHibernate 1.2.0 63
Component Mapping
</class>
<dynamic-component name="UserAttributes">
<property name="Foo" column="FOO"/>
<property name="Bar" column="BAR"/>
<many-to-one name="Baz" class="Baz" column="BAZ"/>
</dynamic-component>
The semantics of a <dynamic-component> mapping are identical to <component>. The advantage of this kind of
mapping is the ability to determine the actual properties of the component at deployment time, just by editing
the mapping document. (Runtime manipulation of the mapping document is also possible, using a DOM pars-
er.)
NHibernate 1.2.0 64
Chapter 8. Inheritance Mapping
It is even possible to use different mapping strategies for different branches of the same inheritance hierarchy,
but the same limitations apply as apply to table-per-concrete class mappings. NHibernate does not support mix-
ing <subclass> mappings and <joined-subclass> mappings inside the same <class> element.
Exactly one table is required. There is one big limitation of this mapping strategy: columns declared by the sub-
classes may not have NOT NULL constraints.
NHibernate 1.2.0 65
Inheritance Mapping
</class>
Four tables are required. The three subclass tables have primary key associations to the superclass table (so the
relational model is actually a one-to-one association).
Note that NHibernate's implementation of table-per-subclass requires no discriminator column. Other object/
relational mappers use a different implementation of table-per-subclass which requires a type discriminator
column in the superclass table. The approach taken by NHibernate is much more difficult to implement but ar-
guably more correct from a relational point of view.
For either of these two mapping strategies, a polymorphic association to IPayment is mapped using
<many-to-one>.
<many-to-one name="Payment"
column="PAYMENT"
class="IPayment"/>
Three tables were required. Notice that nowhere do we mention the IPayment interface explicitly. Instead, we
make use of NHibernate's implicit polymorphism. Also notice that properties of IPayment are mapped in each
of the subclasses.
<any name="Payment"
meta-type="class"
id-type="Int64">
<column name="PAYMENT_CLASS"/>
<column name="PAYMENT_ID"/>
</any>
It would be better if we defined an IUserType as the meta-type, to handle the mapping from type discriminator
strings to IPayment subclass.
<any name="payment"
meta-type="PaymentMetaType"
id-type="Int64">
NHibernate 1.2.0 66
Inheritance Mapping
There is one further thing to notice about this mapping. Since the subclasses are each mapped in their own
<class> element (and since IPayment is just an interface), each of the subclasses could easily be part of another
table-per-class or table-per-subclass inheritance hierarchy! (And you can still use polymorphic queries against
the IPayment interface.)
Once again, we don't mention IPayment explicitly. If we execute a query against the IPayment interface - for
example, from IPayment - NHibernate automatically returns instances of CreditCardPayment (and its sub-
classes, since they also implement IPayment), CashPayment and ChequePayment but not instances of Nonelec-
tronicTransaction.
8.2. Limitations
NHibernate assumes that an association maps to exactly one foreign key column. Multiple associations per for-
eign key are tolerated (you might need to specify inverse="true" or insert="false" update="false"), but
there is no way to map any association to multiple foreign keys. This means that:
• when an association is modified, it is always the same foreign key that is updated
• when an association is fetched eagerly, it may be fetched using a single outer join
In particular, it implies that polymorphic one-to-many associations to classes mapped using the table-
per-concrete-class strategy are not supported. (Fetching this association would require multiple queries or mul-
tiple joins.)
The following table shows the limitations of table-per-concrete-class mappings, and of implicit polymorphism,
NHibernate 1.2.0 67
Inheritance Mapping
in NHibernate.
table- <many-to-o <one-to-on <one-to-ma <many-to-m s.Get(type from Pay- from Order
per- ne> e> ny> any> of(IPaymen ment p o join
class- t), id) o.payment
hierarchy p
table- <many-to-o <one-to-on <one-to-ma <many-to-m s.Get(type from IPay- from Order
per- ne> e> ny> any> of(IPaymen ment p o join
subclass t), id) o.Payment
p
table- <any> not suppor- not suppor- <many-to-a use a query from Pay- not suppor-
per- ted ted ny> ment p ted
concrete-
class
(implicit
polymorph-
ism)
NHibernate 1.2.0 68
Chapter 9. Manipulating Persistent Data
The single-argument Save() generates and assigns a unique identifier to fritz. The two-argument form at-
tempts to persist pk using the given identifier. We generally discourage the use of the two-argument form since
it may be used to create primary keys with business meaning.
Associated objects may be made persistent in any order you like unless you have a NOT NULL constraint upon a
foreign key column. There is never a risk of violating foreign key constraints. However, you might violate a
NOT NULL constraint if you Save() the objects in the wrong order.
Note that Load() will throw an unrecoverable exception if there is no matching database row. If the class is
mapped with a proxy, Load() returns an object that is an uninitialized proxy and does not actually hit the data-
base until you invoke a method of the object. This behaviour is very useful if you wish to create an association
to an object without actually loading it from the database.
If you are not certain that a matching row exists, you should use the Get() method, which hits the database im-
mediately and returns null if there is no matching row.
NHibernate 1.2.0 69
Manipulating Persistent Data
You may also load an objects using an SQL SELECT ... FOR UPDATE. See the next section for a discussion of
NHibernate LockModes.
Note that any associated instances or contained collections are not selected FOR UPDATE.
It is possible to re-load an object and all its collections at any time, using the Refresh() method. This is useful
when database triggers are used to initialize some of the properties of the object.
sess.Save(cat);
sess.Flush(); //force the SQL INSERT
sess.Refresh(cat); //re-read the state (after the trigger executes)
An important question usually appears at this point: How much does Hibernate load from the database and how
many SQL SELECTs will it use? This depends on the fetching strategy and is explained in Section 15.1,
“Fetching strategies”.
9.3. Querying
If you don't know the identifier(s) of the object(s) you are looking for, use the Find() methods of ISession.
NHibernate supports a simple but powerful object oriented query language.
NHibernate 1.2.0 70
Manipulating Persistent Data
The second argument to Find() accepts an object or array of objects. The third argument accepts a NHibernate
type or array of NHibernate types. These given types are used to bind the given objects to the ? query place-
holders (which map to input parameters of an ADO.NET IDbCommand). Just as in ADO.NET, you should use
this binding mechanism in preference to string manipulation.
The NHibernateUtil class defines a number of static methods and constants, providing access to most of the
built-in types, as instances of NHibernate.Type.IType.
If you expect your query to return a very large number of objects, but you don't expect to use them all, you
might get better performance from the Enumerable() methods, which return a Sys-
tem.Collections.IEnumerable. The iterator will load objects on demand, using the identifiers returned by an
initial SQL query (n+1 selects total).
// fetch ids
IEnumerable en = sess.Enumerable("from eg.Qux q order by q.Likeliness");
foreach ( Qux qux in en )
{
// something we couldnt express in the query
if ( qux.CalculateComplicatedAlgorithm() ) {
// dont need to process the rest
break;
}
}
The Enumerable() method also performs better if you expect that many of the objects are already loaded and
cached by the session, or if the query results contain the same objects many times. (When no data is cached or
repeated, Find() is almost always faster.) Heres an example of a query that should be called using Enumer-
able():
IEnumerable en = sess.Enumerable(
"select customer, product " +
"from Customer customer, " +
"Product product " +
"join customer.Purchases purchase " +
"where product = purchase.Product"
);
Calling the previous query using Find() would return a very large ADO.NET result set containing the same
data many times.
NHibernate queries sometimes return tuples of objects, in which case each tuple is returned as an array:
Queries may specify a property of a class in the select clause. They may even call SQL aggregate functions.
Properties or aggregates are considered "scalar" results.
NHibernate 1.2.0 71
Manipulating Persistent Data
IEnumerable en = sess.Enumerable(
"select cat.Type, cat.Birthdate, cat.Name from DomesticCat cat"
);
If you need to specify bounds upon your result set (the maximum number of rows you want to retrieve and / or
the first row you want to retrieve) you should obtain an instance of NHibernate.IQuery:
You may even define a named query in the mapping document. (Remember to use a CDATA section if your
query contains characters that could be interpreted as markup.)
<query name="Eg.DomesticCat.by.name.and.minimum.weight"><![CDATA[
from Eg.DomesticCat as cat
where cat.Name = ?
and cat.Weight > ?
] ]></query>
IQuery q = sess.GetNamedQuery("Eg.DomesticCat.by.name.and.minimum.weight");
q.SetString(0, name);
q.SetInt32(1, minWeight);
IList cats = q.List();
The query interface supports the use of named parameters. Named parameters are identifiers of the form :name
in the query string. There are methods on IQuery for binding values to named or positional parameters.
NHibernate numbers parameters from zero. The advantages of named parameters are:
• named parameters are insensitive to the order they occur in the query string
• they may occur multiple times in the same query
• they are self-documenting
//positional parameter
IQuery q = sess.CreateQuery("from DomesticCat cat where cat.Name = ?");
q.SetString(0, "Izi");
IEnumerable cats = q.Enumerable();
NHibernate 1.2.0 72
Manipulating Persistent Data
A collection filter is a special type of query that may be applied to a persistent collection or array. The query
string may refer to this, meaning the current collection element.
Observe that filters do not require a from clause (though they may have one if required). Filters are not limited
to returning the collection elements themselves.
HQL is extremely powerful but some people prefer to build queries dynamically, using an object oriented API,
rather than embedding strings in their .NET code. For these people, NHibernate provides an intuitive ICriter-
ia query API.
If you are uncomfortable with SQL-like syntax, this is perhaps the easiest way to get started with NHibernate.
This API is also more extensible than HQL. Applications might provide their own implementations of the
ICriterion interface.
You may express a query in SQL, using CreateSQLQuery(). You must enclose SQL aliases in braces.
NHibernate 1.2.0 73
Manipulating Persistent Data
).List()
SQL queries may contain named and positional parameters, just like NHibernate queries.
Transactional persistent instances (ie. objects loaded, saved, created or queried by the ISession) may be ma-
nipulated by the application and any changes to persistent state will be persisted when the ISession is flushed
(discussed later in this chapter). So the most straightforward way to update the state of an object is to Load() it,
and then manipulate it directly, while the ISession is open:
Sometimes this programming model is inefficient since it would require both an SQL SELECT (to load an ob-
ject) and an SQL UPDATE (to persist its updated state) in the same session. Therefore NHibernate offers an al-
ternate approach.
Many applications need to retrieve an object in one transaction, send it to the UI layer for manipulation, then
save the changes in a new transaction. (Applications that use this kind of approach in a high-concurrency envir-
onment usually use versioned data to ensure transaction isolation.) This approach requires a slightly different
programming model to the one described in the last section. NHibernate supports this model by providing the
method Session.Update().
If the Cat with identifier catId had already been loaded by secondSession when the application tried to update
it, an exception would have been thrown.
The application should individually Update() transient instances reachable from the given transient instance if
and only if it wants their state also updated. (Except for lifecycle objects, discussed later.)
Hibernate users have requested a general purpose method that either saves a transient instance by generating a
new identifier or update the persistent state associated with its current identifier. The SaveOrUpdate() method
now implements this functionality.
NHibernate distinguishes "new" (unsaved) instances from "existing" (saved or loaded in a previous session) in-
stances by the value of their identifier (or version, or timestamp) property. The unsaved-value attribute of the
<id> (or <version>, or <timestamp>) mapping specifies which values should be interpreted as representing a
NHibernate 1.2.0 74
Manipulating Persistent Data
"new" instance.
If unsaved-value is not specified for a class, NHibernate will attempt to guess it by creating an instance of the
class using the no-argument constructor and reading the property value from the instance.
The usage and semantics of SaveOrUpdate() seems to be confusing for new users. Firstly, so long as you are
not trying to use instances from one session in another new session, you should not need to use Update() or
SaveOrUpdate(). Some whole applications will never use either of these methods.
The last case can be avoided by using SaveOrUpdateCopy(Object o). This method copies the state of the given
object onto the persistent object with the same identifier. If there is no persistent instance currently associated
with the session, it will be loaded. The method returns the persistent instance. If the given instance is unsaved
or does not exist in the database, NHibernate will save it and return it as a newly persistent instance. Otherwise,
the given instance does not become associated with the session. In most applications with detached objects, you
need both methods, SaveOrUpdate() and SaveOrUpdateCopy().
NHibernate 1.2.0 75
Manipulating Persistent Data
The Lock() method allows the application to reassociate an unmodified object with a new session.
//just reassociate:
sess.Lock(fritz, LockMode.None);
//do a version check, then reassociate:
sess.Lock(izi, LockMode.Read);
//do a version check, using SELECT ... FOR UPDATE, then reassociate:
sess.Lock(pk, LockMode.Upgrade);
sess.Delete(cat);
You may also delete many objects at once by passing a NHibernate query string to Delete().
You may now delete objects in any order you like, without risk of foreign key constraint violations. Of course,
it is still possible to violate a NOT NULL constraint on a foreign key column by deleting objects in the wrong or-
der.
9.6. Flush
From time to time the ISession will execute the SQL statements needed to synchronize the ADO.NET connec-
tion's state with the state of objects held in memory. This process, flush, occurs by default at the following
points
1. all entity insertions, in the same order the corresponding objects were saved using ISession.Save()
2. all entity updates
3. all collection deletions
4. all collection element deletions, updates and insertions
5. all collection insertions
6. all entity deletions, in the same order the corresponding objects were deleted using ISession.Delete()
(An exception is that objects using native ID generation are inserted when they are saved.)
Except when you explicity Flush(), there are absolutely no guarantees about when the Session executes the
ADO.NET calls, only the order in which they are executed. However, NHibernate does guarantee that the
ISession.Find(..) methods will never return stale data; nor will they return the wrong data.
It is possible to change the default behavior so that flush occurs less frequently. The FlushMode class defines
three different modes: only flush at commit time (and only when the NHibernate ITransaction API is used),
flush automatically using the explained routine, or never flush unless Flush() is called explicitly. The last
mode is useful for long running units of work, where an ISession is kept open and disconnected for a long time
(see Section 10.4, “Optimistic concurrency control”).
NHibernate 1.2.0 76
Manipulating Persistent Data
sess = sf.OpenSession();
ITransaction tx = sess.BeginTransaction();
sess.FlushMode = FlushMode.Commit; //allow queries to return stale state
Cat izi = (Cat) sess.Load(typeof(Cat), id);
izi.Name = "iznizi";
// execute some queries....
sess.Find("from Cat as cat left outer join cat.Kittens kitten");
//change to izi is not flushed!
...
tx.Commit(); //flush occurs
If you happen to be using the ITransaction API, you don't need to worry about this step. It will be performed
implicitly when the transaction is committed. Otherwise you should call ISession.Flush() to ensure that all
changes are synchronized with the database.
If you are using the NHibernate ITransaction API, this looks like:
If you are managing ADO.NET transactions yourself you should manually Commit() the ADO.NET transac-
tion.
sess.Flush();
currentTransaction.Commit();
or:
currentTransaction.Rollback();
If you rollback the transaction you should immediately close and discard the current session to ensure that
NHibernate's internal state is consistent.
A call to ISession.Close() marks the end of a session. The main implication of Close() is that the ADO.NET
connection will be relinquished by the session.
NHibernate 1.2.0 77
Manipulating Persistent Data
tx.Commit();
sess.Close();
sess.Flush();
currentTransaction.Commit();
sess.Close();
If you provided your own connection, Close() returns a reference to it, so you can manually close it or return it
to the pool. Otherwise Close() returns it to the pool.
If the ISession throws an exception you should immediately rollback the transaction, call ISession.Close()
and discard the ISession instance. Certain methods of ISession will not leave the session in a consistent state.
For exceptions thrown by the data provider while interacting with the database, NHibernate will wrap the error
in an instance of ADOException. The underlying exception is accessible by calling ADOExcep-
tion.InnerException.
The following exception handling idiom shows the typical case in NHibernate applications:
NHibernate 1.2.0 78
Manipulating Persistent Data
Recommendation:
• If the child object's lifespan is bounded by the lifespan of the of the parent object make it a lifecycle object
by specifying cascade="all".
• Otherwise, Save() and Delete() it explicitly from application code. If you really want to save yourself
some extra typing, use cascade="save-update" and explicit Delete().
Mapping an association (many-to-one, or collection) with cascade="all" marks the association as a parent/
child style relationship where save/update/deletion of the parent results in save/update/deletion of the
child(ren). Futhermore, a mere reference to a child from a persistent parent will result in save / update of the
child. The metaphor is incomplete, however. A child which becomes unreferenced by its parent is not automat-
ically deleted, except in the case of a <one-to-many> association mapped with cascade="all-delete-orphan".
The precise semantics of cascading operations are as follows:
NHibernate does not fully implement "persistence by reachability", which would imply (inefficient) persistent
garbage collection. However, due to popular demand, NHibernate does support the notion of entities becoming
persistent when referenced by another persistent object. Associations marked cascade="save-update" behave
in this way. If you wish to use this approach throughout your application, it's easier to specify the default-
cascade attribute of the <hibernate-mapping> element.
9.10. Interceptors
The IInterceptor interface provides callbacks from the session to the application allowing the application to
inspect and / or manipulate properties of a persistent object before it is saved, updated, deleted or loaded. One
possible use for this is to track auditing information. For example, the following IInterceptor automatically
sets the CreateTimestamp when an IAuditable is created and updates the LastUpdateTimestamp property
when an IAuditable is updated.
using System;
using NHibernate.Type;
namespace NHibernate.Test
{
[Serializable]
public class AuditInterceptor : IInterceptor
{
NHibernate 1.2.0 79
Manipulating Persistent Data
object[] state,
string[] propertyNames,
IType[] types)
{
// do nothing
}
if ( entity is IAuditable )
{
updates++;
for ( int i=0; i < propertyNames.Length; i++ )
{
if ( "LastUpdateTimestamp" == propertyNames[i] )
{
currentState[i] = DateTime.Now;
return true;
}
}
}
return false;
}
......
......
NHibernate 1.2.0 80
Manipulating Persistent Data
}
}
You may also set an interceptor on a global level, using the Configuration:
NHibernate exposes metadata via the IClassMetadata and ICollectionMetadata interfaces and the IType
hierarchy. Instances of the metadata interfaces may be obtained from the ISessionFactory.
NHibernate 1.2.0 81
Chapter 10. Transactions And Concurrency
NHibernate is not itself a database. It is a lightweight object-relational mapping tool. Transaction management
is delegated to the underlying database connection. If the connection is enlisted with a distributed transaction,
operations performed by the ISession are atomically part of the wider distributed transaction. NHibernate can
be seen as a thin adapter to ADO.NET, adding object-oriented semantics.
ISessionFactory sf = Global.SessionFactory;
Each call to a service method could create a new ISession, Flush() it, Commit() its transaction, Close() it and
finally discard it. (The ISessionFactory may also be kept in a static Singleton helper variable.)
We use the NHibernate ITransaction API as discussed previously, a single Commit() of a NHibernate
ITransaction flushes the state and commits any underlying database connection (with special handling of dis-
tributed transactions).
Ensure you understand the semantics of Flush(). Flushing synchronizes the persistent store with in-memory
changes but not vice-versa. Note that for all NHibernate ADO.NET connections/transactions, the transaction
isolation level for that connection applies to all operations executed by NHibernate!
The next few sections will discuss alternative approaches that utilize versioning to ensure transaction atomicity.
These are considered "advanced" approaches to be used with care.
• Never create more than one concurrent ISession or ITransaction instance per database connection.
• Be extremely careful when creating more than one ISession per database per transaction. The ISession it-
self keeps track of updates made to loaded objects, so a different ISession might see stale data.
• The ISession is not threadsafe! Never access the same ISession in two concurrent threads. An ISession is
usually only a single unit-of-work!
Database Identity
foo.Id.Equals( bar.Id )
NHibernate 1.2.0 82
Transactions And Concurrency
CLR Identity
foo == bar
Then for objects attached to a particular Session, the two notions are equivalent. However, while the applica-
tion might concurrently access the "same" (persistent identity) business object in two different sessions, the two
instances will actually be "different" (CLR identity).
This approach leaves NHibernate and the database to worry about concurrency. The application never needs to
synchronize on any business object, as long as it sticks to a single thread per ISession or object identity (within
an ISession the application may safely use == to compare objects).
Maintaining isolation of business processes becomes the partial responsibility of the application tier, hence we
call this process a long running application transaction. A single application transaction usually spans several
database transactions. It will be atomic if only one of these database transactions (the last one) stores the up-
dated data, all others simply read data.
The only approach that is consistent with high concurrency and high scalability is optimistic concurrency con-
trol with versioning. NHibernate provides for three possible approaches to writing application code that uses
optimistic concurrency.
A single ISession instance and its persistent instances are used for the whole application transaction.
The ISession uses optimistic locking with versioning to ensure that many database transactions appear to the
application as a single logical application transaction. The ISession is disconnected from any underlying
ADO.NET connection when waiting for user interaction. This approach is the most efficient in terms of data-
base access. The application need not concern itself with version checking or with reattaching detached in-
stances.
The foo object still knows which ISession it was loaded it. As soon as the ISession has an ADO.NET con-
nection, we commit the changes to the object.
This pattern is problematic if our ISession is too big to be stored during user think time, e.g. an HttpSession
should be kept as small as possible. As the ISession is also the (mandatory) first-level cache and contains all
loaded objects, we can propably use this strategy only for a few request/response cycles. This is indeed recom-
mended, as the ISession will soon also have stale data.
NHibernate 1.2.0 83
Transactions And Concurrency
Each interaction with the persistent store occurs in a new ISession. However, the same persistent instances are
reused for each interaction with the database. The application manipulates the state of detached instances ori-
ginally loaded in another ISession and then "reassociates" them using ISession.Update() or ISes-
sion.SaveOrUpdate().
You may also call Lock() instead of Update() and use LockMode.Read (performing a version check, bypassing
all caches) if you are sure that the object has not been modified.
You may disable NHibernate's automatic version increment for particular properties and collections by setting
the optimistic-lock mapping attribute to false. NHibernate will then no longer increment versions if the
property is dirty.
Legacy database schemas are often static and can't be modified. Or, other applications might also access the
same database and don't know how to handle version numbers or even timestamps. In both cases, versioning
can't rely on a particular column in a table. To force a version check without a version or timestamp property
mapping, with a comparison of the state of all fields in a row, turn on optimistic-lock="all" in the <class>
mapping. Note that this concepetually only works if NHibernate can compare the old and new state, i.e. if you
use a single long ISession and not session-per-request-with-detached-objects.
Sometimes concurrent modification can be permitted as long as the changes that have been made don't overlap.
If you set optimistic-lock="dirty" when mapping the <class>, NHibernate will only compare dirty fields
during flush.
In both cases, with dedicated version/timestamp columns or with full/dirty field comparison, NHibernate uses a
single UPDATE statement (with an appropriate WHERE clause) per entity to execute the version check and update
the information. If you use transitive persistence to cascade reattachment to associated entities, NHibernate
might execute uneccessary updates. This is usually not a problem, but on update triggers in the database might
be executed even when no changes have been made to detached instances. You can customize this behavior by
setting select-before-update="true" in the <class> mapping, forcing Hibernate to SELECT the instance to
ensure that changes did actually occur, before updating the row.
Each interaction with the database occurs in a new ISession that reloads all persistent instances from the data-
base before manipulating them. This approach forces the application to carry out its own version checking to
ensure application transaction isolation. (Of course, NHibernate will still update version numbers for you.) This
approach is the least efficient in terms of database access.
NHibernate 1.2.0 84
Transactions And Concurrency
session.Flush();
transaction.Commit();
session.close();
Of course, if you are operating in a low-data-concurrency environment and don't require version checking, you
may use this approach and just skip the version check.
before waiting for user activity. The method ISession.Disconnect() will disconnect the session from the
ADO.NET connection and return the connection to the pool (unless you provided the connection).
ISession.Reconnect() obtains a new connection (or you may supply one) and restarts the session. After re-
connection, to force a version check on data you aren't updating, you may call ISession.Lock() on any objects
that might have been updated by another transaction. You don't need to lock any data that you are updating.
Heres an example:
ISessionFactory sessions;
IList fooList;
Bar bar;
....
ISession s = sessions.OpenSession();
ITransaction tx = null;
try
{
tx = s.BeginTransaction())
fooList = s.Find(
"select foo from Eg.Foo foo where foo.Date = current date"
// uses db2 date function
);
tx.Commit();
}
catch (Exception)
{
if (tx != null) tx.Rollback();
s.Close();
throw;
}
s.Disconnect();
Later on:
s.Reconnect();
try
{
tx = s.BeginTransaction();
NHibernate 1.2.0 85
Transactions And Concurrency
tx.Commit();
}
catch (Exception)
{
if (tx != null) tx.Rollback();
throw;
}
finally
{
s.Close();
}
You can see from this how the relationship between ITransactions and ISessions is many-to-one, An ISes-
sion represents a conversation between the application and the database. The ITransaction breaks that con-
versation up into atomic units of work at the database level.
NHibernate will always use the locking mechanism of the database, never lock objects in memory!
The LockMode class defines the different lock levels that may be acquired by NHibernate. A lock is obtained by
the following mechanisms:
If ISession.Load() is called with Upgrade or UpgradeNoWait, and the requested object was not yet loaded by
the session, the object is loaded using SELECT ... FOR UPDATE. If Load() is called for an object that is already
loaded with a less restrictive lock than the one requested, NHibernate calls Lock() for that object.
NHibernate 1.2.0 86
Transactions And Concurrency
ISession.Lock() performs a version number check if the specified lock mode is Read, Upgrade or Up-
gradeNoWait. (In the case of Upgrade or UpgradeNoWait, SELECT ... FOR UPDATE is used.)
If the database does not support the requested lock mode, NHibernate will use an appropriate alternate mode
(instead of throwing an exception). This ensures that applications will be portable.
• OnClose - is essentially the legacy behavior described above. The NHibernate session obtains a connection
when it first needs to perform some database access and holds unto that connection until the session is
closed.
• AfterTransaction - says to release connections after a NHibernate.ITransaction has completed.
• auto (the default) - equivalent to after_transaction in the current release. It is rarely a good idea to
change this default behavior as failures due to the value of this setting tend to indicate bugs and/or invalid
assumptions in user code.
• on_close - says to use ConnectionReleaseMode.OnClose. This setting is left for backwards compatibility,
but its use is highly discouraged.
• after_transaction - says to use ConnectionReleaseMode.AfterTransaction. Note that with Connec-
tionReleaseMode.AfterTransaction, if a session is considered to be in auto-commit mode (i.e. no trans-
action was started) connections will be released after every operation.
As of NHibernate 1.2.0, if your application manages transactions through .NET APIs such as Sys-
tem.Transactions library, ConnectionReleaseMode.AfterTransaction may cause NHibernate to open and
close several connections during one transaction, leading to unnecessary overhead and transaction promotion
from local to distributed. Specifying ConnectionReleaseMode.OnClose will revert to the legacy behavior and
prevent this problem from occuring.
NHibernate 1.2.0 87
Chapter 11. HQL: The Hibernate Query Language
NHibernate is equiped with an extremely powerful query language that (quite intentionally) looks very much
like SQL. But don't be fooled by the syntax; HQL is fully object-oriented, understanding notions like inherit-
ence, polymorphism and association.
This manual uses lowercase HQL keywords. Some users find queries with uppercase keywords more readable,
but we find this convention ugly when embedded in Java code.
from Eg.Cat
Most of the time, you will need to assign an alias, since you will want to refer to the Cat in other parts of the
query.
This query assigns the alias cat to Cat instances, so we could use that alias later in the query. The as keyword
is optional; we could also write:
It is considered good practice to name query aliases using an initial lowercase, consistent with naming stand-
ards for local variables (eg. domesticCat).
NHibernate 1.2.0 88
HQL: The Hibernate Query Language
• inner join
• left outer join
• right outer join
• full join (not usually useful)
The inner join, left outer join and right outer join constructs may be abbreviated.
In addition, a "fetch" join allows associations or collections of values to be initialized along with their parent
objects, using a single select. This is particularly useful in the case of a collection. It effectively overrides the
outer join and lazy declarations of the mapping file for associations and collections. See Section 15.1,
“Fetching strategies” for more information.
A fetch join does not usually need to assign an alias, because the associated objects should not be used in the
where clause (or any other clause). Also, the associated objects are not returned directly in the query results. In-
stead, they may be accessed via the parent object.
It is possible to create a cartesian product by join fetching more than one collection in a query, so take care in
this case. Join fetching multiple collection roles is also disabled for bag mappings. Note also that the fetch
construct may not be used in queries called using Enumerable(). Finally, note that full join fetch and right
join fetch are not meaningful.
select mate
from Eg.Cat as cat
inner join cat.Mate as mate
The query will select Mates of other Cats. Actually, you may express this query more compactly as:
You may even select collection elements, using the special elements function. The following query returns all
kittens of any cat.
Queries may return properties of any value type including properties of component type:
NHibernate 1.2.0 89
HQL: The Hibernate Query Language
Queries may return multiple objects and/or properties as an array of type object[]
Collections may also appear inside aggregate functions in the select clause.
The distinct and all keywords may be used and have the same semantics as in SQL.
returns instances not only of Cat, but also of subclasses like DomesticCat. NHibernate queries may name any
.NET class or interface in the from clause. The query will return instances of all persistent classes that extend
that class or implement the interface. The following query would return all persistent objects:
from System.Object o
NHibernate 1.2.0 90
HQL: The Hibernate Query Language
Note that these last two queries will require more than one SQL SELECT. This means that the order by clause
does not correctly order the whole result set.
select foo
from Eg.Foo foo, Eg.Bar bar
where foo.StartDate = bar.Date
will return all instances of Foo for which there exists an instance of Bar with a Date property equal to the
StartDate property of the Foo. Compound path expressions make the where clause extremely powerful. Con-
sider:
This query translates to an SQL query with a table (inner) join. If you were to write something like
you would end up with a query that would require four table joins in SQL.
The = operator may be used to compare not only properties, but also instances:
The special property (lowercase) id may be used to reference the unique identifier of an object. (You may also
use its property name.)
Properties of composite identifiers may also be used. Suppose Person has a composite identifier consisting of
Country and MedicareNumber.
NHibernate 1.2.0 91
HQL: The Hibernate Query Language
Likewise, the special property class accesses the discriminator value of an instance in the case of polymorphic
persistence. A Java class name embedded in the where clause will be translated to its discriminator value.
You may also specify properties of components or composite user types (and of components of components,
etc). Never try to use a path-expression that ends in a property of component type (as opposed to a property of a
component). For example, if store.Owner is an entity with a component Address
store.Owner.Address.City // okay
store.Owner.Address // error!
An "any" type has the special properties id and class, allowing us to express a join in the following way
(where AuditLog.Item is a property mapped with <any>).
Notice that log.Item.class and payment.class would refer to the values of completely different database
columns in the above query.
11.8. Expressions
Expressions allowed in the where clause include most of the kind of things you could write in SQL:
• mathematical operators +, -, *, /
• binary comparison operators =, >=, <=, <>, !=, like
• logical operations and, or, not
• string concatenation ||
• SQL scalar functions like upper() and lower()
• Parentheses ( ) indicate grouping
• in, between, is null
• positional parameters ?
• named parameters :name, :start_date, :x1
• SQL literals 'foo', 69, '1970-01-01 10:00:01.0'
• Enumeration values and constants Eg.Color.Tabby
from Eg.DomesticCat cat where cat.Name not between 'A' and 'B'
NHibernate 1.2.0 92
HQL: The Hibernate Query Language
Likewise, is null and is not null may be used to test for null values.
Booleans may be easily used in expressions by declaring HQL query substitutions in NHibernate configuration:
This will replace the keywords true and false with the literals 1 and 0 in the translated SQL from this HQL:
You may test the size of a collection with the special property size, or the special size() function.
For indexed collections, you may refer to the minimum and maximum indices using minIndex and maxIndex.
Similarly, you may refer to the minimum and maximum elements of a collection of basic type using minEle-
ment and maxElement.
There are also functional forms (which, unlike the constructs above, are not case sensitive):
The SQL functions any, some, all, exists, in are supported when passed the element or index set of a col-
lection (elements and indices functions) or the result of a subquery (see below).
Note that these constructs - size, elements, indices, minIndex, maxIndex, minElement, maxElement - have
certain usage restrictions:
Elements of indexed collections (arrays, lists, maps) may be referred to by index (in a where clause only):
NHibernate 1.2.0 93
HQL: The Hibernate Query Language
HQL also provides the built-in index() function, for elements of a one-to-many association or collection of
values.
If you are not yet convinced by all this, think how much longer and less readable the following query would be
in SQL:
select cust
from Product prod,
Store store
inner join store.Customers cust
where prod.Name = 'widget'
and store.Location.Name in ( 'Melbourne', 'Sydney' )
and prod = all elements(cust.CurrentOrder.LineItems)
NHibernate 1.2.0 94
HQL: The Hibernate Query Language
Note: You may use the elements and indices constructs inside a select clause, even on databases with no
subselects.
SQL functions and aggregate functions are allowed in the having and order by clauses, if supported by the un-
derlying database (ie. not in MySQL).
select cat
from Eg.Cat cat
join cat.Kittens kitten
group by cat.Id, cat.Name, cat.Other, cat.Properties
having avg(kitten.Weight) > 100
order by count(kitten) asc, sum(kitten.Weight) desc
Note that neither the group by clause nor the order by clause may contain arithmetic expressions. Also note
that NHibernate currently does not expand a grouped entity, so you can't write group by cat if all properties of
cat are non-aggregated. You have to list all non-aggregated properties explicitly.
11.11. Subqueries
For databases that support subselects, NHibernate supports subqueries within queries. A subquery must be sur-
rounded by parentheses (often by an SQL aggregate function call). Even correlated subqueries (subqueries that
refer to an alias in the outer query) are allowed.
NHibernate 1.2.0 95
HQL: The Hibernate Query Language
The following query returns the order id, number of items and total value of the order for all unpaid orders for a
particular customer and given minimum total value, ordering the results by total value. In determining the
prices, it uses the current catalog. The resulting SQL query, against the ORDER, ORDER_LINE, PRODUCT, CATALOG
and PRICE tables has four inner joins and an (uncorrelated) subselect.
What a monster! Actually, in real life, I'm not very keen on subqueries, so my query was really more like this:
The next query counts the number of payments in each status, excluding all payments in the AwaitingApproval
status where the most recent status change was made by the current user. It translates to an SQL query with two
inner joins and a correlated subselect against the PAYMENT, PAYMENT_STATUS and PAYMENT_STATUS_CHANGE
tables.
NHibernate 1.2.0 96
HQL: The Hibernate Query Language
If I would have mapped the StatusChanges collection as a list, instead of a set, the query would have been
much simpler to write.
The next query uses the MS SQL Server isNull() function to return all the accounts and unpaid payments for
the organization to which the current user belongs. It translates to an SQL query with three inner joins, an outer
join and a subselect against the ACCOUNT, PAYMENT, PAYMENT_STATUS, ACCOUNT_TYPE, ORGANIZATION and
ORG_USER tables.
For some databases, we would need to do away with the (correlated) subselect.
If your database supports subselects, you can place a condition upon selection size in the where clause of your
query:
NHibernate 1.2.0 97
HQL: The Hibernate Query Language
As this solution can't return a User with zero messages because of the inner join, the following form is also use-
ful:
NHibernate 1.2.0 98
Chapter 12. Criteria Queries
NHibernate features an intuitive, extensible criteria query API.
There are quite a range of built-in criterion types (Expression subclasses), but one that is especially useful lets
you specify SQL directly.
The {alias} placeholder with be replaced by the row alias of the queried entity.
NHibernate 1.2.0 99
Criteria Queries
12.4. Associations
You may easily specify constraints upon related entities by navigating associations using CreateCriteria().
note that the second CreateCriteria() returns a new instance of ICriteria, which refers to the elements of
the Kittens collection.
Note that the kittens collections held by the Cat instances returned by the previous two queries are not pre-
filtered by the criteria! If you wish to retrieve just the kittens that match the criteria, you must use SetResult-
Transformer(CriteriaUtil.AliasToEntityMap).
.List();
This query will fetch both Mate and Kittens by outer join. See Section 15.1, “Fetching strategies” for more in-
formation.
Version properties, identifiers and associations are ignored. By default, null-valued properties and properties
which return an empty string from the call to ToString() are excluded.
You can even use examples to place criteria upon associated objects.
There is no explicit "group by" necessary in a criteria query. Certain projection types are defined to be grouping
projections, which also appear in the SQL group by clause.
An alias may optionally be assigned to a projection, so that the projected value may be referred to in restrictions
or orderings. Here are two different ways to do this:
The Alias() and As() methods simply wrap a projection instance in another, aliased, instance of IProjection.
As a shortcut, you can assign an alias when you add the projection to a projection list:
A DetachedCriteria may also be used to express a subquery. ICriterion instances involving subqueries may be
obtained via Subqueries .
.List();
NHibernate 1.2 allows you to specify handwritten SQL (including stored procedures) for all create, update, de-
lete, and load operations.
This will return an IList of Object arrays (object[]) with scalar values for each column in the CATS table. Only
these three columns will be returned, even though the query is using * and could return more than the three lis-
ted columns.
The above query was about returning scalar values, basically returning the "raw" values from the result set. The
following shows how to get entity objects from a native SQL query via AddEntity().
Assuming that Cat is mapped as a class with the columns ID, NAME and BIRTHDATE the above queries will
both return an IList where each element is a Cat entity.
If the entity is mapped with a many-to-one to another entity it is required to also return its identifier when per-
forming the native query, otherwise a database specific "column not found" error will occur. The additional
columns will automatically be returned when using the * notation, but we prefer to be explicit as in the follow-
ing example for a many-to-one to a Dog:
It is possible to eagerly join in the Dog to avoid the possible extra roundtrip for initializing the proxy. This is
done via the AddJoin() method, which allows you to join in an association or collection.
sess.CreateSQLQuery("SELECT c.ID, NAME, BIRTHDATE, DOG_ID, D_ID, D_NAME FROM CATS c, DOGS d WHERE c.DO
.AddEntity("cat", typeof(Cat))
.AddJoin("cat.Dog");
In this example the returned Cat's will have their Dog property fully initialized without any extra roundtrip to
the database. Notice that we added a alias name ("cat") to be able to specify the target property path of the join.
It is possible to do the same eager joining for collections, e.g. if the Cat had a one-to-many to Dog instead.
sess.CreateSQLQuery("SELECT ID, NAME, BIRTHDATE, D_ID, D_NAME, CAT_ID FROM CATS c, DOGS d WHERE c.ID =
.AddEntity("cat", typeof(Cat))
.AddJoin("cat.Dogs");
At this stage we are reaching the limits of what is possible with native queries without starting to enhance the
SQL queries to make them usable in NHibernate; the problems start to arise when returning multiple entities of
the same type or when the default alias/column names are not enough.
Until now the result set column names are assumed to be the same as the column names specified in the map-
ping document. This can be problematic for SQL queries which join multiple tables, since the same column
names may appear in more than one table.
Column alias injection is needed in the following query (which most likely will fail):
The intention for this query is to return two Cat instances per row, a cat and its mother. This will fail since there
is a conflict of names since they are mapped to the same column names and on some databases the returned
column aliases will most likely be on the form "c.ID", "c.NAME", etc. which are not equal to the columns spe-
cificed in the mappings ("ID" and "NAME").
• the SQL query string, with placeholders for NHibernate to inject column aliases
The {cat.*} and {mother.*} notation used above is a shorthand for "all properties". Alternatively, you may list
the columns explicity, but even in this case we let NHibernate inject the SQL column aliases for each property.
The placeholder for a column alias is just the property name qualified by the table alias. In the following ex-
ample, we retrieve Cats and their mothers from a different table (cat_log) to the one declared in the mapping
metadata. Notice that we may even use the property aliases in the where clause if we like.
For most cases the above alias injection is needed, but for queries relating to more complex mappings like com-
posite properties, inheritance discriminators, collections etc. there are some specific aliases to use to allow
NHibernate to inject the proper aliases.
The following table shows the different possibilities of using the alias injection. Note: the alias names in the
result are examples, each alias will have a unique and probably different name when used.
the collection
It is possible to apply an IResultTransformer to native sql queries. Allowing it to e.g. return non-managed en-
tities.
• a result transformer
The above query will return a list of CatDTO which has been instantiated and injected the values of NAME and
BIRTHNAME into its corresponding properties or fields.
Native SQL queries which query for entities that are mapped as part of an inheritance hierarchy must include
all properties for the base class and all its subclasses.
13.1.7. Parameters
<sql-query name="persons">
<return alias="person" class="eg.Person"/>
SELECT person.NAME AS {person.Name},
person.AGE AS {person.Age},
person.SEX AS {person.Sex}
FROM PERSON person
WHERE person.NAME LIKE :namePattern
</sql-query>
The <return-join> and <load-collection> elements are used to join associations and define queries which
initialize collections, respectively.
<sql-query name="personsWith">
<return alias="person" class="eg.Person"/>
<return-join alias="address" property="person.MailingAddress"/>
SELECT person.NAME AS {person.Name},
person.AGE AS {person.Age},
person.SEX AS {person.Sex},
adddress.STREET AS {address.Street},
adddress.CITY AS {address.City},
adddress.STATE AS {address.State},
adddress.ZIP AS {address.Zip}
FROM PERSON person
JOIN ADDRESS adddress
ON person.ID = address.PERSON_ID AND address.TYPE='MAILING'
WHERE person.NAME LIKE :namePattern
</sql-query>
A named SQL query may return a scalar value. You must declare the column alias and NHibernate type using
the <return-scalar> element:
<sql-query name="mySqlQuery">
<return-scalar column="name" type="String"/>
<return-scalar column="age" type="Int64"/>
SELECT p.NAME AS name,
p.AGE AS age,
FROM PERSON p WHERE p.NAME LIKE 'Hiber%'
</sql-query>
You can externalize the resultset mapping informations in a <resultset> element to either reuse them accross
several named queries or through the SetResultSetMapping() API.
<resultset name="personAddress">
<return alias="person" class="eg.Person"/>
<return-join alias="address" property="person.MailingAddress"/>
</resultset>
You can alternatively use the resultset mapping information in your .hbm.xml files directly in code.
With <return-property> you can explicitly tell NHibernate what column aliases to use, instead of using the
<sql-query name="mySqlQuery">
<return alias="person" class="eg.Person">
<return-property name="Name" column="myName"/>
<return-property name="Age" column="myAge"/>
<return-property name="Sex" column="mySex"/>
</return>
SELECT person.NAME AS myName,
person.AGE AS myAge,
person.SEX AS mySex,
FROM PERSON person WHERE person.NAME LIKE :name
</sql-query>
<return-property> also works with multiple columns. This solves a limitation with the {}-syntax which can
not allow fine grained control of multi-column properties.
<sql-query name="organizationCurrentEmployments">
<return alias="emp" class="Employment">
<return-property name="Salary">
<return-column name="VALUE"/>
<return-column name="CURRENCY"/>
</return-property>
<return-property name="EndDate" column="myEndDate"/>
</return>
SELECT EMPLOYEE AS {emp.Employee}, EMPLOYER AS {emp.Employer},
STARTDATE AS {emp.StartDate}, ENDDATE AS {emp.EndDate},
REGIONCODE as {emp.RegionCode}, EID AS {emp.Id}, VALUE, CURRENCY
FROM EMPLOYMENT
WHERE EMPLOYER = :id AND ENDDATE IS NULL
ORDER BY STARTDATE ASC
</sql-query>
Notice that in this example we used <return-property> in combination with the {}-syntax for injection, allow-
ing users to choose how they want to refer column and properties.
If your mapping has a discriminator you must use <return-discriminator> to specify the discriminator
column.
NHibernate 1.2 introduces support for queries via stored procedures and functions. Most of the following docu-
mentation is equivalent for both. The stored procedure/function must return a resultset to be able to work with
NHibernate. An example of such a stored function in MS SQL Server 2000 and higher is as follows:
To use this query in NHibernate you need to map it via a named query.
<sql-query name="selectAllEmployments_SP">
<return alias="emp" class="Employment">
<return-property name="employee" column="EMPLOYEE"/>
<return-property name="employer" column="EMPLOYER"/>
<return-property name="startDate" column="STARTDATE"/>
<return-property name="endDate" column="ENDDATE"/>
<return-property name="regionCode" column="REGIONCODE"/>
<return-property name="id" column="EID"/>
<return-property name="salary">
<return-column name="VALUE"/>
<return-column name="CURRENCY"/>
</return-property>
</return>
exec selectAllEmployments
</sql-query>
Notice that stored procedures currently only return scalars and entities. <return-join> and
<load-collection> are not supported.
To use stored procedures with NHibernate the procedures/functions have to follow some rules. If they do not
follow those rules they are not usable with NHibernate. If you still want to use these procedures you have to ex-
ecute them via session.Connection. The rules are different for each database, since database vendors have dif-
ferent stored procedure semantics/syntax.
Recommended call form is dependent on your database. For MS SQL Server use exec functionName
<parameters>.
• A function must return a result set. The first parameter of a procedure must be an OUT that returns a result
set. This is done by using a SYS_REFCURSOR type in Oracle 9 or 10. In Oracle you need to define a REF
CURSOR type, see Oracle literature.
• The procedure must return a result set. NHibernate will use IDbCommand.ExecuteReader() to obtain the
results.
• If you can enable SET NOCOUNT ON in your procedure it will probably be more efficient, but this is not a re-
quirement.
<class name="Person">
<id name="id">
<generator class="increment"/>
</id>
<property name="name" not-null="true"/>
<sql-insert>INSERT INTO PERSON (NAME, ID) VALUES ( UPPER(?), ? )</sql-insert>
<sql-update>UPDATE PERSON SET NAME=UPPER(?) WHERE ID=?</sql-update>
<sql-delete>DELETE FROM PERSON WHERE ID=?</sql-delete>
</class>
Note that the custom sql-insert will not be used if you use identity to generate identifier values for the
class.
The SQL is directly executed in your database, so you are free to use any dialect you like. This will of course
reduce the portability of your mapping if you use database specific SQL.
<class name="Person">
<id name="id">
<generator class="increment"/>
</id>
<property name="name" not-null="true"/>
<sql-insert>exec createPerson ?, ?</sql-insert>
<sql-delete>exec deletePerson ?</sql-delete>
<sql-update>exec updatePerson ?, ?</sql-update>
</class>
The order of the positional parameters is currently vital, as they must be in the same sequence as NHibernate
expects them.
You can see the expected order by enabling debug logging for the NHibernate.Persister.Entity level. With
this level enabled NHibernate will print out the static SQL that is used to create, update, delete etc. entities. (To
see the expected sequence, remember to not include your custom SQL in the mapping files as that will override
the NHibernate generated static sql.)
The stored procedures are by default required to affect the same number of rows as NHibernate-generated SQL
would. NHibernate uses IDbCommand.ExecuteNonQuery to retrieve the number of rows affected. This check can
be disabled by using check="none" attribute in sql-insert element.
<sql-query name="person">
<return alias="pers" class="Person" lock-mode="upgrade"/>
SELECT NAME AS {pers.Name}, ID AS {pers.Id}
FROM PERSON
WHERE ID=?
FOR UPDATE
</sql-query>
This is just a named query declaration, as discussed earlier. You may reference this named query in a class
mapping:
<class name="Person">
<id name="Id">
<generator class="increment"/>
</id>
<property name="Name" not-null="true"/>
<loader query-ref="person"/>
</class>
<sql-query name="employments">
<load-collection alias="emp" role="Person.Employments"/>
SELECT {emp.*}
FROM EMPLOYMENT emp
WHERE EMPLOYER = :id
You could even define an entity loader that loads a collection by join fetching:
<sql-query name="person">
<return alias="pers" class="Person"/>
<return-join alias="emp" property="pers.Employments"/>
SELECT NAME AS {pers.*}, {emp.*}
FROM PERSON pers
LEFT OUTER JOIN EMPLOYMENT emp
ON pers.ID = emp.PERSON_ID
WHERE ID=?
</sql-query>
In order to use filters, they must first be defined and then attached to the appropriate mapping elements. To
define a filter, use the <filter-def/> element within a <hibernate-mapping/> element:
<filter-def name="myFilter">
<filter-param name="myFilterParam" type="String"/>
</filter-def>
or, to a collection:
<set ...>
<filter name="myFilter" condition=":myFilterParam = MY_FILTERED_COLUMN"/>
</set>
session.EnableFilter("myFilter").SetParameter("myFilterParam", "some-value");
Note that methods on the NHibernate.IFilter interface do allow the method-chaining common to much of Hi-
bernate.
A full example, using temporal data with an effective record date pattern:
<filter-def name="effectiveDate">
<filter-param name="asOfDate" type="date"/>
</filter-def>
...
<!--
Note that this assumes non-terminal records have an eff_end_dt set to
a max db date for simplicity-sake
-->
<filter name="effectiveDate"
condition=":asOfDate BETWEEN eff_start_dt and eff_end_dt"/>
</class>
Then, in order to ensure that you always get back currently effective records, simply enable the filter on the ses-
sion prior to retrieving employee data:
In the HQL above, even though we only explicitly mentioned a salary constraint on the results, because of the
enabled filter the query will return only currently active employees who have a salary greater than a million
dollars.
Note: if you plan on using filters with outer joining (either through HQL or load fetching) be careful of the dir-
ection of the condition expression. It's safest to set this up for left outer joining; in general, place the parameter
first followed by the column name(s) after the operator.
• Join fetching - NHibernate retrieves the associated instance or collection in the same SELECT, using an OUT-
ER JOIN.
• Select fetching - a second SELECT is used to retrieve the associated entity or collection. Unless you explicitly
disable lazy fetching by specifying lazy="false", this second select will only be executed when you actu-
ally access the association.
• Subselect fetching - a second SELECT is used to retrieve the associated collections for all entities retrieved in
a previous query or fetch. Unless you explicitly disable lazy fetching by specifying lazy="false", this
second select will only be executed when you actually access the association.
• Batch fetching - an optimization strategy for select fetching - NHibernate retrieves a batch of entity in-
stances or collections in a single SELECT, by specifying a list of primary keys or foreign keys.
• Immediate fetching - an association, collection or attribute is fetched immediately, when the owner is
loaded.
• Lazy collection fetching - a collection is fetched when the application invokes an operation upon that collec-
tion. (This is the default for collections.)
• Proxy fetching - a single-valued association is fetched when a method other than the identifier getter is in-
voked upon the associated object.
We have two orthogonal notions here: when is the association fetched, and how is it fetched (what SQL is
used). Don't confuse them! We use fetch to tune performance. We may use lazy to define a contract for what
data is always available in any detached instance of a particular class.
By default, NHibernate 1.2 uses lazy select fetching for collections and lazy proxy fetching for single-valued
associations. These defaults make sense for almost all associations in almost all applications.
However, lazy fetching poses one problem that you must be aware of. Access to a lazy association outside of
the context of an open NHibernate session will result in an exception. For example:
s = sessions.OpenSession();
Transaction tx = s.BeginTransaction();
tx.Commit();
s.Close();
Since the permissions collection was not initialized when the ISession was closed, the collection will not be
able to load its state. NHibernate does not support lazy initialization for detached objects. The fix is to move
the code that reads from the collection to just before the transaction is committed.
Alternatively, we could use a non-lazy collection or association, by specifying lazy="false" for the associ-
ation mapping. However, it is intended that lazy initialization be used for almost all collections and associ-
ations. If you define too many non-lazy associations in your object model, NHibernate will end up needing to
fetch the entire database into memory in every transaction!
On the other hand, we often want to choose join fetching (which is non-lazy by nature) instead of select fetch-
ing in a particular transaction. We'll now see how to customize the fetching strategy. In NHibernate 1.2, the
mechanisms for choosing a fetch strategy are identical for single-valued associations and collections.
Select fetching (the default) is extremely vulnerable to N+1 selects problems, so we might want to enable join
fetching in the mapping document:
<set name="Permissions"
fetch="join">
<key column="userId"/>
<one-to-many class="Permission"/>
</set
• ICriteria queries
No matter what fetching strategy you use, the defined non-lazy graph is guaranteed to be loaded into memory.
Note that this might result in several immediate selects being used to execute a particular HQL query.
Usually, we don't use the mapping document to customize fetching. Instead, we keep the default behavior, and
override it for a particular transaction, using left join fetch in HQL. This tells NHibernate to fetch the asso-
ciation eagerly in the first select, using an outer join. In the ICriteria query API, you would use SetFetch-
Mode(FetchMode.Join).
If you ever feel like you wish you could change the fetching strategy used by Get() or Load(), simply use a
ICriteria query, for example:
(This is NHibernate's equivalent of what some ORM solutions call a "fetch plan".)
A completely different way to avoid problems with N+1 selects is to use the second-level cache.
Lazy fetching for collections is implemented using NHibernate's own implementation of persistent collections.
However, a different mechanism is needed for lazy behavior in single-ended associations. The target entity of
the association must be proxied. NHibernate implements lazy initializing proxies for persistent objects using
runtime bytecode enhancement (via the excellent Castle.DynamicProxy library).
By default, NHibernate 1.2 generates proxies (at startup) for all persistent classes and uses them to enable lazy
fetching of many-to-one and one-to-one associations.
The mapping file may declare an interface to use as the proxy interface for that class, with the proxy attribute.
By default, NHibernate uses a subclass of the class. Note that the proxied class must implement a non-private
default constructor. We recommend this constructor for all persistent classes!
There are some gotchas to be aware of when extending this approach to polymorphic classes, eg.
Firstly, instances of Cat will never be castable to DomesticCat, even if the underlying instance is an instance of
DomesticCat:
Cat cat = (Cat) session.Load(typeof(Cat), id); // instantiate a proxy (does not hit the db)
if ( cat.IsDomesticCat ) { // hit the db to initialize the proxy
DomesticCat dc = (DomesticCat) cat; // Error!
....
}
However, the situation is not quite as bad as it looks. Even though we now have two references to different
proxy objects, the underlying instance will still be the same object:
Third, you may not use a proxy for a sealed class or a class with any non-overridable public members.
Finally, if your persistent object acquires any resources upon instantiation (eg. in initializers or default con-
structor), then those resources will also be acquired by the proxy. The proxy class is an actual subclass of the
persistent class.
These problems are all due to fundamental limitations in Java's single inheritance model. If you wish to avoid
these problems your persistent classes must each implement an interface that declares its business methods.
You should specify these interfaces in the mapping file. eg.
where CatImpl implements the interface ICat and DomesticCatImpl implements the interface IDomesticCat.
Then proxies for instances of ICat and IDomesticCat may be returned by Load() or Enumerable(). (Note that
List() does not usually return proxies.)
Relationships are also lazily initialized. This means you must declare any properties to be of type ICat, not
CatImpl.
Sometimes we need to ensure that a proxy or collection is initialized before closing the ISession. Of course,
we can alway force initialization by calling cat.Sex or cat.Kittens.Count, for example. But that is confusing
to readers of the code and is not convenient for generic code.
Another option is to keep the ISession open until all needed collections and proxies have been loaded. In some
application architectures, particularly where the code that accesses data using NHibernate, and the code that
uses it are in different application layers or different physical processes, it can be a problem to ensure that the
ISession is open when a collection is initialized. There are two basic ways to deal with this issue:
• In a web-based application, a HttpModule can be used to close the ISession only at the very end of a user
request, once the rendering of the view is complete (the Open Session in View pattern). Of course, this
places heavy demands on the correctness of the exception handling of your application infrastructure. It is
vitally important that the ISession is closed and the transaction ended before returning to the user, even
when an exception occurs during rendering of the view. See the Hibernate Wiki for examples of this "Open
Session in View" pattern.
• In an application with a separate business tier, the business logic must "prepare" all collections that will be
needed by the web tier before returning. This means that the business tier should load all the data and return
all the data already initialized to the presentation/web tier that is required for a particular use case. Usually,
the application calls NHibernateUtil.Initialize() for each collection that will be needed in the web tier
(this call must occur before the session is closed) or retrieves the collection eagerly using a NHibernate
query with a FETCH clause or a FetchMode.Join in ICriteria. This is usually easier if you adopt the Com-
mand pattern instead of a Session Facade.
• You may also attach a previously loaded object to a new ISession with SaveOrUpdateCopy() or Lock()
before accessing uninitialized collections (or other proxies). No, NHibernate does not, and certainly should
not do this automatically, since it would introduce ad hoc transaction semantics!
Sometimes you don't want to initialize a large collection, but still need some information about it (like its size)
or a subset of the data.
You can use a collection filter to get the size of a collection without initializing it:
The CreateFilter() method is also used to efficiently retrieve subsets of a collection without needing to ini-
tialize the whole collection:
NHibernate can make efficient use of batch fetching, that is, NHibernate can load several uninitialized proxies
if one proxy is accessed (or collections. Batch fetching is an optimization of the lazy select fetching strategy.
There are two ways you can tune batch fetching: on the class and the collection level.
Batch fetching for classes/entities is easier to understand. Imagine you have the following situation at runtime:
You have 25 Cat instances loaded in an ISession, each Cat has a reference to its Owner, a Person. The Person
class is mapped with a proxy, lazy="true". If you now iterate through all cats and call cat.Owner on each, Hi-
bernate will by default execute 25 SELECT statements, to retrieve the proxied owners. You can tune this behavi-
or by specifying a batch-size in the mapping of Person:
NHibernate will now execute only three queries, the pattern is 10, 10, 5.
You may also enable batch fetching of collections. For example, if each Person has a lazy collection of Cats,
and 10 persons are currently loaded in the ISesssion, iterating through all persons will generate 10 SELECTs,
one for every call to person.Cats. If you enable batch fetching for the Cats collection in the mapping of Per-
son, NHibernate can pre-fetch collections:
<class name="Person">
<set name="Cats" batch-size="3">
...
</set>
</class>
With a batch-size of 3, NHibernate will load 3, 3, 3, 1 collections in four SELECTs. Again, the value of the at-
tribute depends on the expected number of uninitialized collections in a particular Session.
Batch fetching of collections is particularly useful if you have a nested tree of items, ie. the typical bill-
of-materials pattern. (Although a nested set or a materialized path might be a better option for read-mostly
trees.)
If one lazy collection or single-valued proxy has to be fetched, NHibernate loads all of them, re-running the ori-
ginal query in a subselect. This works in the same way as batch-fetching, without the piecemeal loading.
By default, NHibernate uses HashtableCache for process-level caching. You may choose a different imple-
mentation by specifying the name of a class that implements NHibernate.Cache.ICacheProvider using the
property hibernate.cache.provider_class.
The <cache> element of a class or collection mapping has the following form:
<cache
usage="read-write|nonstrict-read-write|read-only" (1)
region="RegionName" (2)
/>
Alternatively (preferrably?), you may specify <class-cache> and <collection-cache> elements in hibern-
ate.cfg.xml.
If your application needs to read but never modify instances of a persistent class, a read-only cache may be
used. This is the simplest and best performing strategy. Its even perfectly safe for use in a cluster.
If the application needs to update data, a read-write cache might be appropriate. This cache strategy should
never be used if serializable transaction isolation level is required. You should ensure that the transaction is
completed when ISession.Close() or ISession.Disconnect() is called. If you wish to use this strategy in a
cluster, you should ensure that the underlying cache implementation supports locking. The built-in cache pro-
viders do not.
If the application only occasionally needs to update data (ie. if it is extremely unlikely that two transactions
would try to update the same item simultaneously) and strict transaction isolation is not required, a nonstrict-
read-write cache might be appropriate. When using this strategy you should ensure that the transaction is
completed when ISession.Close() or ISession.Disconnect() is called.
The following table shows which providers are compatible with which concurrency strategies.
When Flush() is subsequently called, the state of that object will be synchronized with the database. If you do
not want this synchronization to occur or if you are processing a huge number of objects and need to manage
memory efficiently, the Evict() method may be used to remove the object and its collections from the first-
level cache.
NHibernate will evict associated entities automatically if the association is mapped with cascade="all" or
cascade="all-delete-orphan".
The ISession also provides a Contains() method to determine if an instance belongs to the session cache.
To completely evict all objects from the session cache, call ISession.Clear()
For the second-level cache, there are methods defined on ISessionFactory for evicting the cached state of an
instance, entire class, collection instance or entire collection role.
This setting causes the creation of two new cache regions - one holding cached query result sets (NHibern-
ate.Cache.StandardQueryCache), the other holding timestamps of the most recent updates to queryable tables
(NHibernate.Cache.UpdateTimestampsCache). Note that the query cache does not cache the state of any entit-
ies in the result set; it caches only identifier values and results of value type. So the query cache should always
be used in conjunction with the second-level cache.
Most queries do not benefit from caching, so by default queries are not cached. To enable caching, call
IQuery.SetCacheable(true). This call allows the query to look for existing cache results or add its results to
the cache when it is executed.
If you require fine-grained control over query cache expiration policies, you may specify a named cache region
for a particular query by calling IQuery.SetCacheRegion().
If the query should force a refresh of its query cache region, you may call IQuery.SetForceCacheRefresh() to
true. This is particularly useful in cases where underlying data may have been updated via a seperate process
(i.e., not modified through NHibernate) and allows the application to selectively refresh the query cache regions
based on its knowledge of those events. This is a more efficient alternative to eviction of a query cache region
via ISessionFactory.EvictQueries().
15.5.1. Taxonomy
• collections of values
This classification distinguishes the various table and foreign key relationships but does not tell us quite
everything we need to know about the relational model. To fully understand the relational structure and per-
formance characteristics, we must also consider the structure of the primary key that is used by NHibernate to
update or delete collection rows. This suggests the following classification:
• indexed collections
• sets
• bags
All indexed collections (maps, lists, arrays) have a primary key consisting of the <key> and <index> columns.
In this case collection updates are usually extremely efficient - the primary key may be efficiently indexed and
a particular row may be efficiently located when NHibernate tries to update or delete it.
Sets have a primary key consisting of <key> and element columns. This may be less efficient for some types of
collection element, particularly composite elements or large text or binary fields; the database may not be able
to index a complex primary key as efficently. On the other hand, for one to many or many to many associ-
ations, particularly in the case of synthetic identifiers, it is likely to be just as efficient. (Side-note: if you want
SchemaExport to actually create the primary key of a <set> for you, you must declare all columns as not-
null="true".)
<idbag> mappings define a surrogate key, so they are always very efficient to update. In fact, they are the best
case.
Bags are the worst case. Since a bag permits duplicate element values and has no index column, no primary key
may be defined. NHibernate has no way of distinguishing between duplicate rows. NHibernate resolves this
problem by completely removing (in a single DELETE) and recreating the collection whenever it changes. This
might be very inefficient.
Note that for a one-to-many association, the "primary key" may not be the physical primary key of the database
table - but even in this case, the above classification is still useful. (It still reflects how NHibernate "locates" in-
dividual rows of the collection.)
15.5.2. Lists, maps, idbags and sets are the most efficient collections to up-
date
From the discussion above, it should be clear that indexed collections and (usually) sets allow the most efficient
operation in terms of adding, removing and updating elements.
There is, arguably, one more advantage that indexed collections have over sets for many to many associations
or collections of values. Because of the structure of an ISet, NHibernate doesn't ever UPDATE a row when an
element is "changed". Changes to an ISet always work via INSERT and DELETE (of individual rows). Once
again, this consideration does not apply to one to many associations.
After observing that arrays cannot be lazy, we would conclude that lists, maps and idbags are the most perform-
ant (non-inverse) collection types, with sets not far behind. Sets are expected to be the most common kind of
collection in NHibernate applications. This is because the "set" semantics are most natural in the relational
model.
However, in well-designed NHibernate domain models, we usually see that most collections are in fact one-
to-many associations with inverse="true". For these associations, the update is handled by the many-to-one
end of the association, and so considerations of collection update performance simply do not apply.
15.5.3. Bags and lists are the most efficient inverse collections
Just before you ditch bags forever, there is a particular case in which bags (and also lists) are much more per-
formant than sets. For a collection with inverse="true" (the standard bidirectional one-to-many relationship
idiom, for example) we can add elements to a bag or list without needing to initialize (fetch) the bag elements!
This is because IList.Add() must always succeed for a bag or IList (unlike an ISet). This can make the fol-
lowing common code much faster.
Occasionally, deleting collection elements one by one can be extremely inefficient. NHibernate isn't completely
stupid, so it knows not to do that in the case of an newly-empty collection (if you called list.Clear(), for ex-
ample). In this case, NHibernate will issue a single DELETE and we are done!
Suppose we add a single element to a collection of size twenty and then remove two elements. NHibernate will
issue one INSERT statement and two DELETE statements (unless the collection is a bag). This is certainly desir-
able.
However, suppose that we remove eighteen elements, leaving two and then add thee new elements. There are
two possible ways to proceed:
• Delete eighteen rows one by one and then insert three rows
• Remove the whole collection (in one SQL DELETE) and insert all five current elements (one by one)
NHibernate isn't smart enough to know that the second option is probably quicker in this case. (And it would
probably be undesirable for NHibernate to be that smart; such behaviour might confuse database triggers, etc.)
Fortunately, you can force this behaviour (ie. the second strategy) at any time by discarding (ie. dereferencing)
the original collection and returning a newly instantiated collection with all the current elements. This can be
very useful and powerful from time to time.
• since the implementation uses reflection to access members and types in System.Data assembly which are
not normally visible, it may not function in environments where necessary permissions are not granted,
• optimistic concurrency checking may be impaired since ADO.NET 2.0 does not return the number of rows
affected by each statement in the batch, only the total number of rows affected by the batch.
The result is a list of query results, ordered according to the order of queries added to the multi query. Named
parameters can be set on the multi query, and are shared among all the queries contained in the multi query, like
this:
Positional parameters are not supported on the multi query, only on the individual queries.
As shown above, if you do not need to configure the query separately, you can simply pass the HQL directly to
the IMultiQuery.Add() method.
Multi query is executed by concatenating the queries and sending the query to the database as a single string.
This means that the database should support returning several result sets in a single query. At the moment this
functionality is only enabled for Microsoft SQL Server.
Note that the database server is likely to impose a limit on the maximum number of parameters in a query, in
which case the limit applies to the multi query as a whole. Queries using in with a large number of arguments
passed as parameters may easily exceed this limit. For example, SQL Server has a limit of 2,100 parameters per
round-trip, and will throw an exception executing this query:
An interesting usage of this feature is to load several collections of an object in one round-trip:
The NHibernate main package comes bundled with the most important tool (it can even be used from "inside"
NHibernate on-the-fly):
Other tools directly provided by the NHibernate project are delivered with a separate package, NHibernateCon-
trib. This package includes tools for the following tasks:
• mapping file generation from .NET classes marked with attributes (NHibernate.Mapping.Attributes, or
NHMA for short)
• CodeSmith, MyGeneration, and ObjectMapper (mapping file generation from an existing database schema)
• AndroMDA (MDA (Model-Driven Architecture) approach generating code for persistent classes from
UML diagrams and their XML/XMI representation)
These 3rd party tools are not documented in this reference. Please refer to the NHibernate website for up-
to-date information.
You must specify a SQL Dialect via the hibernate.dialect property when using this tool.
Many NHibernate mapping elements define an optional attribute named length. You may set the length of a
column with this attribute. (Or, for numeric/decimal data types, the precision.)
Some tags also accept a not-null attribute (for generating a NOT NULL constraint on table columns) and a
unique attribute (for generating UNIQUE constraint on table columns).
Some tags accept an index attribute for specifying the name of an index for that column. A unique-key attrib-
ute can be used to group columns in a single unit key constraint. Currently, the specified value of the unique-
key attribute is not used to name the constraint, only to group the columns in the mapping file.
Examples:
Alternatively, these elements also accept a child <column> element. This is particularly useful for multi-column
types:
The sql-type attribute allows the user to override the default mapping of NHibernate type to SQL datatype.
unique true|false specifies that the column should have a unique constraint
foreign-key foreign_key_name specifies the name of the foreign key constraint generated
for an association, use it on <one-to-one>, <many-to-one>,
<key>, and <many-to-many> mapping elements. Note that
inverse="true" sides will not be considered by SchemaEx-
port.
check SQL expression create an SQL check constraint on either column or table
The SchemaExport tool writes a DDL script to standard out and/or executes the DDL statements.
Option Description
16.1.3. Properties
hibernate.dialect dialect
<target name="schemaexport">
<taskdef name="schemaexport"
classname="net.sf.hibernate.tool.hbm2ddl.SchemaExportTask"
classpathref="class.path"/>
<schemaexport
properties="hibernate.properties"
quiet="no"
text="no"
drop="no"
delimiter=";"
output="schema-export.sql">
<fileset dir="src">
<include name="**/*.hbm.xml"/>
</fileset>
</schemaexport>
</target>
If you don't specify properties or a config file, the SchemaExportTask will try to use normal Ant project
properties instead. In other words, if you don't want or need an external configuration or properties file, you
may put hibernate.* configuration properties in your build.xml or build.properties.
hbm2java parses the mapping files and generates fully working Java source files from these. Thus with
hbm2java one could "just" provide the .hbm files, and then don't worry about hand-writing/coding the Java files.
Option Description
The config file provides for a way to specify multiple "renderers" for the source code and to declare <meta> at-
tributes that is "global" in scope. See more about this in the <meta> attribute section.
<codegen>
<meta attribute="implements">codegen.test.IAuditable</meta>
<generate renderer="net.sf.hibernate.tool.hbm2java.BasicRenderer"/>
<generate
package="autofinders.only"
suffix="Finder"
renderer="net.sf.hibernate.tool.hbm2java.FinderRenderer"/>
</codegen>
This config file declares a global meta attribute "implements" and specify two renderers, the default one
(BasicRenderer) and a renderer that generates Finder's (See more in "Basic Finder generation" below).
The package attribute specifies that the generated source files from this renderer should be placed here instead
of the package scope specified in the .hbm files.
The suffix attribute specifies the suffix for generated files. E.g. here a file named Foo.java would be FooFind-
er.java instead.
It is also possible to send down arbitrary parameters to the renders by adding <param> attributes to the
<generate> elements.
hbm2java currently has support for one such parameter, namely generate-concrete-empty-classes which in-
forms the BasicRenderer to only generate empty concrete classes that extends a base class for all your classes.
The following config.xml example illustrate this feature
<codegen>
<generate prefix="Base" renderer="net.sf.hibernate.tool.hbm2java.BasicRenderer"/>
<generate renderer="net.sf.hibernate.tool.hbm2java.BasicRenderer">
<param name="generate-concrete-empty-classes">true</param>
<param name="baseclass-prefix">Base</param>
</generate>
</codegen>
Notice that this config.xml configure 2 (two) renderers. One that generates the Base classes, and a second one
that just generates empty concrete classes.
The <meta> tag is a simple way of annotating the hbm.xml with information, so tools have a natural place to
store/read information that is not directly related to the Hibernate core.
You can use the <meta> tag to tell hbm2java to only generate "protected" setters, have classes always imple-
ment a certain set of interfaces or even have them extend a certain base class and even more.
<class name="Person">
<meta attribute="class-description">
Javadoc for the Person class
@author Frodo
</meta>
<meta attribute="implements">IAuditable</meta>
<id name="id" type="long">
<meta attribute="scope-set">protected</meta>
<generator class="increment"/>
</id>
<property name="name" type="string">
<meta attribute="field-description">The name of the person</meta>
</property>
</class>
will produce something like the following (code shortened for better understanding). Notice the Javadoc com-
ment and the protected set methods:
// default package
import java.io.Serializable;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
* Javadoc for the Person class
* @author Frodo
*
*/
public class Person implements Serializable, IAuditable {
/**
* The name of the person
*/
public java.lang.String getName() {
return this.name;
}
Attribute Description
Attribute Description
property-type Overrides the default type of property. Use this with any tag's
to specify the concrete type instead of just Object.
class-code Extra code that will inserted at the end of the class
extra-import Extra import that will inserted at the end of all other imports
Attributes declared via the <meta> tag are per default "inherited" inside an hbm.xml file.
What does that mean? It means that if you e.g want to have all your classes implement IAuditable then you
just add an <meta attribute="implements">IAuditable</meta> in the top of the hbm.xml file, just after
<hibernate-mapping>. Now all classes defined in that hbm.xml file will implement IAuditable! (Except if a
class also has an "implements" meta attribute, because local specified meta tags always overrules/replaces any
inherited meta tags).
Note: This applies to all <meta>-tags. Thus it can also e.g. be used to specify that all fields should be declare
protected, instead of the default private. This is done by adding <meta attrib-
ute="scope-field">protected</meta> at e.g. just under the <class> tag and all fields of that class will be
protected.
To avoid having a <meta>-tag inherited then you can simply specify inherit="false" for the attribute, e.g.
<meta attribute="scope-class" inherit="false">public abstract</meta> will restrict the "class-scope"
to the current class, not the subclasses.
It is now possible to have hbm2java generate basic finders for Hibernate properties. This requires two things in
the hbm.xml files.
The first is an indication of which fields you want to generate finders for. You indicate that with a meta block
inside a property tag such as:
The finder method name will be the text enclosed in the meta tags.
<codegen>
<generate renderer="net.sf.hibernate.tool.hbm2java.BasicRenderer"/>
<generate suffix="Finder" renderer="net.sf.hibernate.tool.hbm2java.FinderRenderer"/>
</codegen>
And then use the param to hbm2java --config=xxx.xml where xxx.xml is the config file you just created.
<meta attribute="session-method">
com.whatever.SessionTable.getSessionTable().getSession();
</meta>
Which would be the way in which you get sessions if you use the Thread Local Session pattern (documented in
the Design Patterns area of the Hibernate website).
It is now possible to use velocity as an alternative rendering mechanism. The follwing config.xml shows how to
configure hbm2java to use its velocity renderer.
<codegen>
<generate renderer="net.sf.hibernate.tool.hbm2java.VelocityRenderer">
<param name="template">pojo.vm</param>
</generate>
</codegen>
The parameter named template is a resource path to the velocity macro file you want to use. This file must be
available via the classpath for hbm2java. Thus remember to add the directory where pojo.vm is located to your
ant task or shell script. (The default location is ./tools/src/velocity)
Be aware that the current pojo.vm generates only the most basic parts of the java beans. It is not as complete
and feature rich as the default renderer - primarily a lot of the meta tags are not supported.
The Hibernate mapping generator provides a mechanism to produce mappings from compiled classes. It uses
Java reflection to find properties and uses heuristics to guess an appropriate mapping from the property type.
The generated mapping is intended to be a starting point only. There is no way to produce a full Hibernate map-
ping without extra input from the user. However, the tool does take away some of the repetitive "grunt" work
involved in producing a mapping.
Classes are added to the mapping one at a time. The tool will reject classes that it judges are are not Hibernate
persistable.
Note that interfaces and nested classes actually are persistable by Hibernate, but this would not usually be in-
tended by the user.
MapGenerator will climb the superclass chain of all added classes attempting to add as many Hibernate persist-
able superclasses as possible to the same database table. The search stops as soon as a property is found that has
a name appearing on a list of candidate UID names.
The default list of candidate UID property names is: uid, UID, id, ID, key, KEY, pk, PK.
Properties are discovered when there are two methods in the class, a setter and a getter, where the type of the
setter's single argument is the same as the return type of the zero argument getter, and the setter returns void.
Furthermore, the setter's name must start with the string set and either the getter's name starts with get or the
getter's name starts with is and the type of the property is boolean. In either case, the remainder of their names
must match. This matching portion is the name of the property, except that the initial character of the property
name is made lower case if the second letter is lower case.
The rules for determining the database type of each property are as follows:
1. If the Java type is Hibernate.basic(), then the property is a simple column of that type.
2. For hibernate.type.Type custom types and PersistentEnum a simple column is used as well.
3. If the property type is an array, then a Hibernate array is used, and MapGenerator attempts to reflect on the
array element type.
4. If the property has type java.util.List, java.util.Map, or java.util.Set, then the corresponding Hi-
bernate types are used, but MapGenerator cannot further process the insides of these types.
5. If the property's type is any other class, MapGenerator defers the decision on the database representation
until all classes have been processed. At this point, if the class was discovered through the superclass
search described above, then the property is an many-to-one association. If the class has any properties,
then it is a component. Otherwise it is serializable, or not persistable.
When invoking the tool you must place your compiled classes on the classpath.
The interactive mode is selected by providing the single command line argument --interact. This mode
provides a prompt response console. Using it you can set the UID property name for each class using the
uid=XXX command where XXX is the UID property name. Other command alternatives are simply a fully quali-
fied class name, or the command done which emits the XML and terminates.
In command line mode the arguments are the options below interspersed with fully qualified class names of the
classes to be processed. Most of the options are meant to be used multiple times; each use affects subsequently
added classes.
Option Description
--select=mode mode use select mode mode(e.g., distinct or all) for subsequently added
classes
--depth=<small-int> limit the depth of component data recursion for subsequently added
classes
The abstract switch directs the map generator tool to ignore specific super classes so that classes with common
inheritance are not mapped to one large table. For instance, consider these class hierarchies:
Animal-->Mammal-->Human
Animal-->Mammal-->Marsupial-->Kangaroo
If the --abstractswitch is not used, all classes will be mapped as subclasses of Animal, resulting in one large
table containing all the properties of all the classes plus a discriminator column to indicate which subclass is ac-
tually stored. If Mammal is marked as abstract, Human and Marsupial will be mapped to separate <class> de-
clarations and stored in separate tables. Kangaroo will still be a subclass of Marsupial unless Marsupial is also
marked as abstract.
• When we remove / add an object from / to a collection, the version number of the collection owner is incre-
mented.
• If an object that was removed from a collection is an instance of a value type (eg, a composite element), that
object will cease to be persistent and its state will be completely removed from the database. Likewise,
adding a value type instance to the collection will cause its state to be immediately persistent.
• On the other hand, if an entity is removed from a collection (a one-to-many or many-to-many association),
it will not be deleted, by default. This behavior is completely consistent - a change to the internal state of
another entity should not cause the associated entity to vanish! Likewise, adding an entity to a collection
does not cause that entity to become persistent, by default.
Instead, the default behavior is that adding an entity to a collection merely creates a link between the two entit-
ies, while removing it removes the link. This is very appropriate for all sorts of cases. Where it is not appropri-
ate at all is the case of a parent / child relationship, where the life of the child is bound to the lifecycle of the
parent.
<set name="Children">
<key column="parent_id" />
<one-to-many class="Child" />
</set>
Parent p = .....;
Child c = new Child();
p.Children.Add(c);
session.Save(c);
session.Flush();
This is not only inefficient, but also violates any NOT NULL constraint on the parent_id column.
The underlying cause is that the link (the foreign key parent_id) from p to c is not considered part of the state
of the Child object and is therefore not created in the INSERT. So the solution is to make the link part of the
Child mapping.
(We also need to add the Parent property to the Child class.)
Now that the Child entity is managing the state of the link, we tell the collection not to update the link. We use
the inverse attribute.
Similarly, we don't need to iterate over the children when saving or deleting a Parent. The following removes p
and all its children from the database.
p.Children.Remove(c);
c.Parent = null;
session.Flush();
will not remove c from the database; it will only remove the link to p (and cause a NOT NULL constraint viola-
tion, in this case). You need to explicitly Delete() the Child.
p.Children.Remove(c);
session.Delete(c);
session.Flush();
Now, in our case, a Child can't really exist without its parent. So if we remove a Child from the collection, we
really do want it to be deleted. For this, we must use cascade="all-delete-orphan".
Note: even though the collection mapping specifies inverse="true", cascades are still processed by iterating
the collection elements. So if you require that an object be saved, deleted or updated by cascade, you must add
it to the collection. It is not enough to simply set its parent.
(You may also use the version or timestamp property, see Section 9.4.2, “Updating detached objects”.)
The unsaved-value attribute is used to specify the identifier value of a newly instantiated instance. In
NHibernate it is not necessary to specify unsaved-value explicitly.
The following code will update parent and child and insert newChild.
Well, thats all very well for the case of a generated identifier, but what about assigned identifiers and composite
identifiers? This is more difficult, since unsaved-value can't distinguish between a newly instantiated object
(with an identifier assigned by the user) and an object loaded in a previous session. In these cases, you will
probably need to give NHibernate a hint; either
• set unsaved-value="none" and explicitly Save() newly instantiated children before calling Up-
date(parent)
• set unsaved-value="any" and explicitly Update() previously persistent children before calling Up-
date(parent)
null is the default unsaved-value for assigned identifiers, none is the default unsaved-value for composite
identifiers.
There is one further possibility. There is a new IInterceptor method named IsUnsaved() which lets the ap-
plication implement its own strategy for distinguishing newly instantiated objects. For example, you could
define a base class for your persistent classes.
......
(The saved property is non-persistent.) Now implement IsUnsaved(), along with OnLoad() and OnSave() as
follows.
{
return !( (Persistent) entity ).IsSaved;
}
else
{
return null;
}
}
17.5. Conclusion
There is quite a bit to digest here and it might look confusing first time around. However, in practice, it all
works out quite nicely. Most NHibernate applications use the parent / child pattern in many places.
We mentioned an alternative in the first paragraph. None of the above issues exist in the case of
<composite-element> mappings, which have exactly the semantics of a parent / child relationship. Unfortu-
nately, there are two big limitations to composite element classes: composite elements may not own collections,
and they should not be the child of any entity other than the unique parent. (However, they may have a surrog-
ate primary key, using an <idbag> mapping.)
using System;
using System.Collections;
namespace Eg
{
public class Blog
{
private long _id;
private string _name;
private IList _items;
using System;
namespace Eg
{
public class BlogItem
{
private long _id;
private DateTime _dateTime;
private string _text;
private string _title;
private Blog _blog;
<?xml version="1.0"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
assembly="Eg" namespace="Eg">
<class
name="Blog"
table="BLOGS"
lazy="true">
<id
name="Id"
column="BLOG_ID">
<generator class="native"/>
</id>
<property
name="Name"
column="NAME"
not-null="true"
unique="true"/>
<bag
name="Items"
inverse="true"
lazy="true"
order-by="DATE_TIME"
cascade="all">
<key column="BLOG_ID"/>
<one-to-many class="BlogItem"/>
</bag>
</class>
</hibernate-mapping>
<?xml version="1.0"?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
assembly="Eg" namespace="Eg">
<class
name="BlogItem"
table="BLOG_ITEMS"
dynamic-update="true">
<id
name="Id"
column="BLOG_ITEM_ID">
<generator class="native"/>
</id>
<property
name="Title"
column="TITLE"
not-null="true"/>
<property
name="Text"
column="TEXT"
not-null="true"/>
<property
name="DateTime"
column="DATE_TIME"
not-null="true"/>
<many-to-one
name="Blog"
column="BLOG_ID"
not-null="true"/>
</class>
</hibernate-mapping>
using System;
using System.Collections;
using NHibernate.Tool.hbm2ddl;
namespace Eg
{
public class BlogMain
{
private ISessionFactory _sessions;
{
Blog blog = new Blog();
blog.Name = name;
blog.Items = new ArrayList();
return blog;
}
return item;
}
return item;
}
item.Text = text;
tx.Commit();
}
}
return result;
}
return blog;
}
result = q.List();
tx.Commit();
}
return result;
}
}
}
19.1. Employer/Employee
The following model of the relationship between Employer and Employee uses an actual entity class (Employ-
ment) to represent the association. This is done because there might be more than one period of employment for
the same two parties. Components are used to model monetory values and employee names.
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
assembly="..." namespace="...">
<id name="Id">
<generator class="sequence">
<param name="sequence">employment_id_seq</param>
</generator>
</id>
<property name="StartDate" column="start_date"/>
<property name="EndDate" column="end_date"/>
</class>
<id name="Id">
<generator class="sequence">
<param name="sequence">employee_id_seq</param>
</generator>
</id>
<property name="TaxfileNumber"/>
<component name="Name" class="Name">
<property name="FirstName"/>
<property name="Initial"/>
<property name="LastName"/>
</component>
</class>
</hibernate-mapping>
19.2. Author/Work
Consider the following model of the relationships between Work, Author and Person. We represent the relation-
ship between Work and Author as a many-to-many association. We choose to represent the relationship between
Author and Person as one-to-one association. Another possibility would be to have Author extend Person.
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
assembly="..." namespace="...">
<property name="Title"/>
<set name="Authors" table="author_work" lazy="true">
<key>
<column name="work_id" not-null="true"/>
</key>
<many-to-many class="Author">
<column name="author_id" not-null="true"/>
</many-to-many>
</set>
</class>
</class>
</hibernate-mapping>
There are four tables in this mapping. works, authors and persons hold work, author and person data respect-
ively. author_work is an association table linking authors to works. Heres the table schema, as generated by
SchemaExport.
19.3. Customer/Order/Product
Now consider a model of the relationships between Customer, Order and LineItem and Product. There is a
one-to-many association between Customer and Order, but how should we represent Order / LineItem /
Product? I've chosen to map LineItem as an association class representing the many-to-many association
between Order and Product. In NHibernate, this is called a composite element.
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
assembly="..." namespace="...">
</hibernate-mapping>
customers, orders, line_items and products hold customer, order, order line item and product data respect-
ively. line_items also acts as an association table linking orders with products.
Use parameters.
As in ADO.NET, always replace non-constant values by "?". Never use string manipulation to bind a non-
constant value in a query! Even better, consider using named parameters in queries.
NHibernate.Caches namespace contains several second-level cache providers for NHibernate. A cache is
place where entities are kept after being loaded from the database; once cached, they can be retrieved without
going to the database. This means that they are faster to (re)load.
An NHibernate session has an internal (first-level) cache where it keeps its entities. There is no sharing between
these caches - a first-level cache belongs to a given session and is destroyed with it. NHibernate provides a
second-level cache system; it works at the session factory level. A second-level cache is shared by all sessions
created by the same session factory.
An important point is that the second-level cache does not cache instances of the object type being cached; in-
stead it caches the individual values of the properties of that object. This provides two benefits. One, NHibern-
ate doesn't have to worry that your client code will manipulate the objects in a way that will disrupt the cache.
Two, the relationships and associations do not become stale, and are easy to keep up-to-date because they are
simply identifiers. The cache is not a tree of objects but rather a map of arrays.
With the session-per-request model, a high number of sessions can concurrently access the same entity without
hitting the database each time; hence the performance gain.
NHibernate.Caches.Prevalence
Uses Bamboo.Prevalence as the cache provider. Open the file Bamboo.Prevalence.license.txt for more
information about its license; you can also visit its website [http://bbooprevalence.sourceforge.net/].
NHibernate.Caches.SysCache
Uses System.Web.Caching.Cache as the cache provider. This means that you can rely on ASP.NET cach-
ing feature to understand how it works. For more information, read (on the MSDN): Caching Application
Data [http://msdn.microsoft.com/library/en-us/cpguide/html/cpconcacheapis.asp].
Note that SysCache should only be used in ASP.NET applications. Microsoft knowledge base article
917411 [http://support.microsoft.com/kb/917411] has more details.
NHibernate.Caches.SysCache2
Similar to NHibernate.Caches.SysCache, uses ASP.NET cache. This provider also supports SQL depend-
ency-based expiration, meaning that it is possible to configure certain cache regions to automatically expire
when the relevant data in the database changes.
SysCache2 requires Microsoft SQL Server 2000 or higher and .NET Framework version 2.0 or higher.
NHibernate.Caches.MemCache
Uses memcached. See memcached homepage [http://www.danga.com/memcached/] for more information.
• Choose the cache provider you want to use and copy its assembly in your assemblies directory (NHibern-
ate.Caches.Prevalence.dll or NHibernate.Caches.SysCache.dll).
• To tell NHibernate which cache provider to use, add in your NHibernate configuration file (can be YourAs-
sembly.exe.config or web.config or a .cfg.xml file, in the latter case the syntax will be different from
what is shown below):
(1) "XXX" is the assembly-qualified class name of a class implementing ICacheProvider, eg. "NHibern-
ate.Caches.SysCache.SysCacheProvider, NHibernate.Caches.SysCache".
(2) The expiration value is the number of seconds you wish to cache each entry (here two minutes). This
example applies to SysCache only.
Be careful. Caches are never aware of changes made to the persistent store by another process (though they
may be configured to regularly expire cached data). As the caches are created at the session factory level, they
are destroyed with the SessionFactory instance; so you must keep them alive as long as you need them.
expiration
Number of seconds to wait before expiring each item.
priority
A numeric cost of expiring each item, where 1 is a low cost, 5 is the highest, and 3 is normal. Only values 1
through 5 are valid.
SysCache has a config file section handler to allow configuring different expirations and priorities for different
regions. Here's an example:
Example 21.1.
<syscache>
<cache region="foo" expiration="500" priority="4" />
<cache region="bar" expiration="300" priority="3" />
</syscache>
</configuration>
To configure cache regions with SqlCacheDependencies a syscache2 config section must be defined in the ap-
plication's configuration file. See the sample below.
Example 21.2.
<configSections>
<section name="syscache2" type="NHibernate.Caches.SysCache2.SysCacheSection, NHibernate.Caches
</configSections>
A table-based dependency will monitor the data in a database table for changes. Table-based dependencies are
generally used for a SQL Server 2000 database but will work with SQL Server 2005 as well. Before you can
use SQL Server cache invalidation with table based dependencies, you need to enable notifications for the data-
base. This task is performed with the aspnet_regsql command. With table-based notifications, the application
will poll the database for changes at a predefined interval. A cache region will not be invalidated immediately
when data in the table changes. The cache will be invalidated the next time the application polls the database
for changes.
To configure the data in a cache region to be invalidated when data in an underlying table is changed, a cache
region must be configured in the application's configuration file. See the sample below.
Example 21.3.
<syscache2>
<cacheRegion name="Product">
<dependencies>
<tables>
<add name="price"
databaseEntryName="Default"
tableName="VideoTitle" />
</tables>
</dependencies>
</cacheRegion>
</syscache2>
name
Unique name for the dependency
tableName
The name of the database table that the dependency is associated with. The table must be enabled for noti-
fication support with the AspNet_SqlCacheRegisterTableStoredProcedure.
databaseEntryName
The name of a database defined in the databases element for sqlCacheDependency for caching (ASP.NET
Settings Schema) element of the application's Web.config file.
A command-based dependency will use a SQL command to identify records to monitor for data changes. Com-
mand-based dependencies work only with SQL Server 2005.
Before you can use SQL Server cache invalidation with command-based dependencies, you need to enable the
Service Broker for query notifications. The application must also start the listener for receiving change notifica-
tions from SQL Server. With command based notifications, SQL Server will notify the application when the
data of a record returned in the results of a SQL query has changed. Note that a change will be indicated if the
data in any of the columns of a record change, not just the columns returned by a query. The query is a way to
limit the number of records monitored for changes, not the columns. As soon as data in one of the records is
modified, the data in the cache region will be invalidated immediately.
To configure the data in a cache region to be invalidated based on a SQL command, a cache region must be
configured in the application's configuration file. See the samples below.
name
Unique name for the dependency
(required)
command
SQL command that returns results which should be monitored for data changes
isStoredProcedure (optional)
Indicates if command is a stored procedure. The default is false.
connectionName (optional)
The name of the connection in the applications configuration file to use for registering the cache depend-
ency for change notifications. If no value is supplied for connectionName or connectionStringProvider-
Type, the connection properties from the NHibernate configruation will be used.
connectionStringProviderType (optional)
IConnectionStringProvider to use for retrieving the connection string to use for registering the cache de-
pendency for change notifications. If no value is supplied for connectionName, the unnamed connection
supplied by the provider will be used.
Multiple cache dependencies can be specified. If any of the dependencies triggers a change notification, the
data in the cache region will be invalidated. See the samples below.
<cacheRegion name="Product">
<dependencies>
<commands>
<add name="price"
command="ActiveProductsStoredProcedure"
isStoredProcedure="true"/>
<add name="quantity"
command="Select quantityAvailable from dbo.VideoAvailability"/>
</commands>
</dependencies>
</cacheRegion>
<cacheRegion name="Product">
<dependencies>
<commands>
<add name="price"
command="ActiveProductsStoredProcedure"
isStoredProcedure="true"/>
</commands>
<tables>
<add name="quantity"
databaseEntryName="Default"
tableName=" VideoAvailability" />
</tables>
</dependencies>
</cacheRegion>
In addition to data dependencies for the cache regions, time based expiration policies can be specified for each
item added to the cache. Time based expiration policies will not invalidate the data dependencies for the whole
cache region, but serve as a way to remove items from the cache after they have been in the cache for a spe-
cified amount of time. See the samples below.
relativeExpiration
Number of seconds that an individual item will exist in the cache before being removed.
timeOfDayExpiration
24 hour based time of day that an item will exist in the cache until. 12am is specified as 00:00:00; 10pm is
specified as 22:00:00. Only valid if relativeExpiration is not specified. Time of Day Expiration is useful for
scenarios where items should be expired from the cache after a daily process completes.
priority
System.Web.Caching.CacheItemPriority that identifies the relative priority of items stored in the cache.
21.4.5. Patches
There is a known issue where some SQL Server 2005 notifications might not be received when an application
subscribes to query notifications by using ADO.NET 2.0. To fix this problem install SQL hotfix for kb 913364
[http://support.microsoft.com/Default.aspx?kbid=913364].
With NHibernate.Mapping.Attributes, you can use .NET attributes to decorate your entities and these attributes
will be used to generate these mapping .hbm.xml (as files or streams). So you will no longer have to bother
with these nasty xml files ;).
Important
This library is generated using the file /
src/NHibernate.Mapping.Attributes/nhibernate-mapping.xsd (which is embedded in the as-
sembly to be able to validate generated XML streams). As this file can change at each new release of
NHibernate, you should regenerate it before using it with a different version (open the Generator solu-
tion, compile and run the Generator project). But, no test has been done with versions prior to 0.8.
1. [RawXmlAttribute] is a new attribute allowing to insert xml as-is in the mapping. This feature can be very
useful to do complex mapping (eg: components). It may also be used to quickly move the mapping from
xml files to attributes. Usage: [RawXml(After=typeof(ComponentAttribute), Content="<component
name="...">...</component>")]. After tells after which kind of mapping the xml should be inserted
(generally, it is the type of the mapping you are inserting); it is optional (in which case the xml is inserted
on the top of the mapping). Note: At the moment, all raw xmls are prefixed by a <!----> (in the generated
stream); this is a known side-effect.
The idea is that, when you have a mapping which is shared by many subclasses but which has minor dif-
ferences (like different column names), you can put the mapping in the base class with place holders on
these fields and give their values in subclasses. Note that this is possible for any mapping field taking a
string (column, name, type, access, etc.). And, instead of Value, you can use ValueType or ValueObject
(if you use an enum, you can control its formatting with ValueObject).
The "place holder" is defined like this: {{XXX}}. If you don't want to use these double curly brackets, you
can change them using the properties StartQuote and EndQuote of the class HbmWriter.
3. It is possible to register patterns (using Regular Expressions) to automatically transform fully qualified
names of properties types into something else. Eg: HbmSerial-
izer.Default.HbmWriter.Patterns.Add(@"Namespace.(\S+), Assembly", "$1"); will map all proper-
ties with a not-qualified type name.
5. Two WriteUserDefinedContent() methods have been added to HbmWriter. They improve the extensibil-
ity of this library; it is now very easy to create a .NET attribute and integrate it in the mapping.
8. A notable "bug" fix is the re-ordering of (joined-)subclasses; This operation may be required when a sub-
class extends another subclass. In this case, the extended class mapping must come before the extending
class mapping. Note that the re-ordering takes place only for "top-level" classes (that is not nested in other
mapped classes). Anyway, it is quite unusual to put a interdependent mapped subclasses in a mapped
class.
9. There are also many other little changes; refer to the release notes for more details.
The first step is to decorate your entities with attributes; you can use: [Class], [Subclass], [JoinedSubclass]
or [Component]. Then, you decorate your members (fields/properties); they can take as many attributes as re-
quired by your mapping. Eg:
[NHibernate.Mapping.Attributes.Class]
public class Example
{
[NHibernate.Mapping.Attributes.Property]
public string Name;
After this step, you use NHibernate.Mapping.Attributes.HbmSerializer: (here, we use Default which is an
instance you can use if you don't need/want to create it yourself).
Note
As you can see here: NHibernate.Mapping.Attributes is not (really) intrusive. Setting attributes on your
objects doesn't force you to use them with NHibernate and doesn't break any constraint on your archi-
tecture. Attributes are purely informative (like documentation)!
22.3. Tips
3. Your classes, fields and properties (members) can be private; just make sure that you have the permission
to access private members using reflection (ReflectionPermissionFlag.MemberAccess).
4. Members of a mapped classes are also seek in its base classes (until we reach mapped base class). So you
can decorate some members of a (not mapped) base class and use it in its (mapped) sub class(es).
5. For a Name taking a System.Type, set the type with Name="xxx" (as string) or NameType=typeof(xxx);
(add "Type" to "Name")
6. By default, .NET attributes don't keep the order of attributes; so you need to set it yourself when the order
matter (using the first parameter of each attribute); it is highly recommended to set it when you have more
than one attribute on the same member.
7. As long as there is no ambiguity, you can decorate a member with many unrelated attributes. A good ex-
ample is to put class-related attributes (like <discriminator>) on the identifier member. But don't forget
that the order matters (the <discriminator> must be after the <id>). The order used comes from the order
of elements in the NHibernate mapping schema. Personally, I prefer using negative numbers for these at-
tributes (if they come before!).
8. You can add [HibernateMapping] on your classes to specify <hibernate-mapping> attributes (used when
serializing the class in its stream). You can also use HbmSerializer.Hbm* properties (used when serializ-
ing an assembly or a type that is not decorated with [HibernateMapping]).
9. Instead of using a string for DiscriminatorValue (in [Class] and [Subclass]), you can use any object
you want. Example:
[Subclass(DiscriminatorValueEnumFormat="d", DiscriminatorValueObject=DiscEnum.Val1)]
Here, the object is an Enum, and you can set the format you want (the default value is "g"). Note that you
must put it before! For others types, It simply use the ToString() method of the object.
10. If you are using members of the type Nullables.NullableXXX (from the library Nullables), then they will
be mapped to Nullables.NHibernate.NullableXXXType automatically; don't set Type="..." in
[Property] (leave it null). This is also the case for SqlTypes (and you can add your own patterns). Thanks
to Michael Third for the idea :)
11. Each stream generated by NHibernate.Mapping.Attributes can contain a comment with the date of the gen-
eration; You may enable/disable this by using the property HbmSerializer.WriteDateComment.
12. If you forget to provide a required xml attribute, it will obviously throw an exception while generating the
mapping.
13. The recommended and easiest way to map [Component] is to use [ComponentProperty]. The first step is
to put [Component] on the component class and map its fields/properties. Note that you shouldn't set the
Name in [Component]. Then, on each member in your classes, add [ComponentProperty]. But you can't
override Access, Update or Insert for each member.
There is a working example in NHibernate.Mapping.Attributes.Test (look for the class CompAddress and
its usage in others classes).
14. Another way to map [Component] is to use the way this library works: If a mapped class contains a
mapped component, then this component will be include in the class. NHibernate.Mapping.Attributes.Test
contains the classes JoinedBaz and Stuff which both use the component Address.
in each class. One of the advantages is that you can override Access, Update or Insert for each member.
But you have to add the component subclass in each class (and it can not be inherited). Another advantage
is that you can use [AttributeIdentifier].
15. Finally, whenever you think that it is easier to write the mapping in XML (this is often the case for
[Component]), you can use [RawXml].
16. About customization. HbmSerializer uses HbmWriter to serialize each kind of attributes. Their methods
are virtual; so you can create a subclass and override any method you want (to change its default behavi-
or).
Use the property HbmSerializer.HbmWriter to change the writer used (you may set a subclass of Hbm-
Writer).
Example using some this tips: (0, 1 and 2 are position indexes)
Generates:
<id type="Int32">
<generator class="uuid.hex" />
</id>
<many-to-one name="Entity" class="Namespaces.Foo, SampleAssembly" outer-join="true" />
A Position property has been added to all attributes to order them. But there is still a problem:
When a parent element "p" has a child element "x" that is also the child element of another child element "c" of
"p" (preceding "x") :D Illustration:
<p>
<c>
<x />
</c>
<x />
</p>
[Attributes.P(0)]
[Attributes.C(1)]
[Attributes.X(2)]
[Attributes.X(3)]
public MyType MyProperty;
Another bad news is that, currently, XML elements coming after this elements can not be included in them. Eg:
There is no way put a collection in <dynamic-component>. The reason is that the file nhibernate-mapping.xsd
tells how elements are built and in which order, and NHibernate.Mapping.Attributes use this order.
Anyway, the solution would be to add a int ParentNode property to BaseAttribute so that you can create a real
graph...
Actually, there is no other know issue nor planned modification. This library should be stable and complete; but
if you find a bug or think of an useful improvement, contact us!
1. Checking if there is any change to do in the Generator (like updating KnowEnums / AllowMultipleValue /
IsRoot / IsSystemType / IsSystemEnum / CanContainItself)
3. Running the Test project and make sure that no exception is thrown. A class/property should be modified/ad-
ded in this project to be sure that any new breaking change will be caught (=> update the reference
hbm.xml files and/or the project NHibernate.Mapping.Attributes-2.0.csproj)
This implementation is based on NHibernate mapping schema; so there is probably lot of "standard schema fea-
tures" that are not supported...
The version of NHibernate.Mapping.Attributes should be the version of the NHibernate schema used to gener-
ate it (=> the version of NHibernate library).
In the design of this project, performance is a (very) minor goal :) Easier implementation and maintenance are
far more important because you can (and should) avoid to use this library in production (Cf. the first tip in Sec-
tion 22.3, “Tips”).
In the directory NHibernate.Tasks, there is a tool called Hbm2NetTask that you can use to automate your
build process (using NAnt)
Nullables makes it possible to use nullable base types in NHibernate. Note that .NET 2.0 has this feature.
public Person()
{
}
public int Id
{
get { return this._id; }
}
As you can see, DateOfBirth has the type Nullables.NullableDateTime (instead of System.DateTime).
Important
In the mapping, the type of DateOfBirth must be Nullables.NHibernate.NullableDateTimeType.
Note that NHibernate.Mapping.Attributes handles that automatically.
per.DateOfBirth = new System.DateTime(1979, 11, 8); // implicit cast from the "plain" System.DateTime.
per.DateOfBirth = new NullableDateTime(new System.DateTime(1979, 11, 8)); // the long way.