Click here to Skip to main content
Click here to Skip to main content

NHibernate Basics

By , 10 Jul 2011
 
Demo Application UI

Introduction

NHibernate is an Object-Relational Mapping (ORM) solution for the .NET Platform. It provides a framework for mapping an object oriented domain model to a traditional relational database. It's primary feature is mapping from .NET classes to database tables and from CLR data types to SQL data types.

As the title of this article, we are going to see this feature only; How it loads business object from a database and saves changes from these objects back to the database.

Background

The demo application demonstrates in simple possible way how to setup and use NHibernate. The application creates an Employee object and stores it in a Employee table. It also does some operations like retrieval and deletion of Employee objects, etc. The application is created with NHibernate 3.2.0, VS 2010 and SQL Server 2008.

Using the Code

Database

Here we are going to setup the database first. Use SQL Server Management Studio to create a database that can be used to elaborate with. As shown below, create a new database named NHibernateBasics.

Create New Database

Then add a table called Employee with two columns; ID and Name.

Create New Table

ID shall be the primary key and used as identity. Don’t forget to enable Identity Specification in the properties.

Set Table Properties

Business Object

The database is ready for the demonstration. Now start Visual Studio and create a new WindowsFormsApplication project called NHibernateBasics. Add a new class called Employee.cs with the following code:

namespace NHibernateBasics
{
    public class Employee
    {
        public virtual int ID { get; set; }

        public virtual string Name { get; set; }
    }
}

One of NHibernate's strongest features is that it doesn't need special interfaces on business classes. These objects are not aware of the mechanism used to load and save them. However it requires the properties declared as virtual so that it can create proxies as needed.

Mapping XML File

In the absence of specific code for hibernation, someone should guide the translation from the database to business object and back again. This can be achieved through either mapping XML file or by applying attributes on classes and properties. In the demo application, we have used mapping file to keep our business object class clean.

Add a new XML file to the project. The XML file will be used as the mapping file. The name of the file must be Employee.hbm.xml. Both class <name>.cs file and mapping <name>.hbm.xml file should be in same folder and <name> should be same. Add the following content to the file:

 <?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" 
	namespace="NHibernateBasics" assembly="NHibernateBasics">
  <class name="Employee" table="Employee">
    <id name="ID" column="ID">
      <generator class="identity"/>
    </id>
    <property name="Name" column="Name"  />
  </class>
</hibernate-mapping>

In the properties for the mapping XML file, set build action to Embedded Resource.

Set Mapping File Properties

Configuration

Add a new application configuration file (app.config). Copy the following content:

 <?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="hibernate-configuration" 
	type="NHibernate.Cfg.ConfigurationSectionHandler, NHibernate" />
  </configSections>
  <hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
    <session-factory>
      <property name="connection.provider">
	NHibernate.Connection.DriverConnectionProvider</property>
      <property name="dialect">NHibernate.Dialect.MsSql2005Dialect</property>
      <property name="query.substitutions">hqlFunction=SQLFUNC</property>
      <property name="connection.driver_class">
	NHibernate.Driver.SqlClientDriver</property>
      <property name="connection.connection_string">
	Data Source=(Local)\SQL2008;Initial Catalog=NHibernateBasics;
	Integrated Security=True</property>
      <property name="show_sql">true</property>
      <mapping assembly="NHibernateBasics" />
    </session-factory>
  </hibernate-configuration>
</configuration>

Adjust the connection.connection_string property so that it works for your database. Set Catalog=<Database Name>; here it is NHibernateBasics. Set mapping assembly=<Class DLL Name>; here it is again NHibernateBasics.

Demonstration

Now we are almost ready for the demonstration. We just need to access the business class objects and perform certain operations on it.

Save

using(mySession.BeginTransaction())
{
    // Insert two employees in Database
    mySession.Save(myInitialObjects[0]); 
    mySession.Save(myInitialObjects[1]); 
    mySession.Transaction.Commit(); 
} 

Load

using(mySession.BeginTransaction())
{
    // Create the criteria and load data
    ICriteria criteria = mySession.CreateCriteria<employee>();
    IList<employee> list = criteria.List<employee>();
    for (int i = 0; i < myFinalObjects.Length; i++)
    {
        myFinalObjects[i] = list[i];
        MessageBox.Show("ID: " + myFinalObjects[i].ID + " 
			Name: " + myFinalObjects[i].Name);
    }
    mySession.Transaction.Commit();
 }

Compare

StringBuilder messageString = new StringBuilder();
// Compare both objects
for (int i = 0; i < 2; i++)
{
    messageString.AppendLine("Comparing Class Object " + 
	myInitialObjects[i].Name + " and DB Object " + 
	myFinalObjects[i].Name + ". Result = " + 
	myInitialObjects[i].Equals(myFinalObjects[i]).ToString());
}
MessageBox.Show(messageString.ToString());

Delete

using (mySession.BeginTransaction())
{
    // Delete one object from Database
    mySession.Delete(myInitialObjects[0]);
    mySession.Transaction.Commit();
}

Display

using (mySession.BeginTransaction())
{
     ICriteria criteria = mySession.CreateCriteria<employee>();
     IList<employee> list = criteria.List<employee>();
     StringBuilder messageString = new StringBuilder();
     // Load and display the data
     foreach (Employee employee in list)
     {
         messageString.AppendLine("ID: " + employee.ID + " Name: " + employee.Name);
     }
     MessageBox.Show(messageString.ToString());
}

NHibernate guarantees that two object references will point to the same object only if the references are set in the same session. If we save the objects in one session and load them in different sessions, then both the objects will be different objects.

Hope it will help you to understand the basics of NHibernate. Happy coding! :)

Points of Interest

Although there are many articles available for NHibernate, target audience for this article are those who just started learning NHibernate, including me :). Another nice article with more information is available here.

History

  • 07/07/2011 - Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Kumar, Ravikant INDIA Bangalore
Software Developer (Senior) Philips
India India
Member
Have been working with computers since the early 00's. Since then I've been building, fixing, configuring, installing, coding and designing with them. At present I mainly code windows applications in C#, WCF, WPF and SQL. I'm very interested in Design Patterns and try and use these generic principles in all new projects to create truly n-tier architectures. Also I like to code for making the User Interface very attractive...

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionScope of N-Herbnt:memberMember 1000075010 May '13 - 18:14 
GeneralMy vote of 4memberHimanshu Thawait10 Apr '13 - 8:07 
GeneralMy vote of 5membersrinivasadari24 Mar '13 - 1:59 
BugLooks good, but just does not work !membermanfbraun22 Mar '13 - 8:43 
GeneralRe: Looks good, but just does not work !memberKumar, Ravikant INDIA Bangalore24 Mar '13 - 20:13 
GeneralRe: Looks good, but just does not work !membermanfbraun25 Mar '13 - 7:38 
GeneralRe: Looks good, but just does not work !memberKumar, Ravikant INDIA Bangalore1 Apr '13 - 22:52 
GeneralMy vote of 2membermosto5514 Mar '13 - 3:27 
GeneralRe: My vote of 2memberKumar, Ravikant INDIA Bangalore14 Mar '13 - 5:59 
QuestionIdentity column getmemberVishal_0079 Jan '13 - 23:27 
AnswerRe: Identity column getmemberKumar, Ravikant INDIA Bangalore17 Jan '13 - 23:36 
GeneralRe: Identity column getmemberVishal_0071 Feb '13 - 3:56 
QuestionExcellentmemberhavitia22 Aug '12 - 11:23 
AnswerRe: ExcellentmemberKumar, Ravikant INDIA Bangalore22 Aug '12 - 19:36 
Questionthank you verry muchmembersmaily0076 Feb '12 - 11:26 
AnswerRe: thank you verry muchmemberKumar, Ravikant INDIA Bangalore29 Jul '12 - 19:29 
QuestionNice codemembervimalprakash31 Jan '12 - 19:53 
AnswerRe: Nice codememberKumar, Ravikant INDIA Bangalore29 Jul '12 - 19:28 
GeneralWhat a great articlememberfeelyd27 Jan '12 - 4:42 
GeneralRe: What a great articlememberKumar, Ravikant INDIA Bangalore29 Jul '12 - 19:28 
GeneralMy vote of 5memberMember 250201316 Jul '11 - 3:52 
QuestionRollback() not seen in your codememberdigimanus11 Jul '11 - 22:56 
AnswerRe: Rollback() not seen in your codememberKumar, Ravikant India Bangalore12 Jul '11 - 17:29 
GeneralRe: Rollback() not seen in your codememberdigimanus12 Jul '11 - 22:41 
GeneralRe: Rollback() not seen in your codememberKumar, Ravikant India Bangalore12 Jul '11 - 23:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 11 Jul 2011
Article Copyright 2011 by Kumar, Ravikant INDIA Bangalore
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid