Book Image

NHibernate 3.0 Cookbook

By : Jason Dentler
Book Image

NHibernate 3.0 Cookbook

By: Jason Dentler

Overview of this book

<p>NHibernate is an innovative, flexible, scalable, and feature-complete open source project for data access. Although it sounds like an easy task to build and maintain database applications, it can be challenging to get beyond the basics and develop applications that meet your needs perfectly.<br /><br />The NHibernate Cookbook explains each feature of NHibernate 3.0 in detail through example recipes that you can quickly apply to your applications. Set yourself free from stored procedures and inline SQL. Quite simply, if you build .NET applications that use databases, this book is for you.<br /><br />The book will take you from the absolute basics of NHibernate through its most advanced features and beyond, showing you how to take full advantage of each concept to quickly create amazing database applications. Beginners will learn several techniques for each of the 4 core NHibernate tasks – mapping, configuration, session &amp; transaction management, and querying – and which techniques fit best with various types of applications. In short, you will be able to build an application using NHibernate. Intermediate level readers will learn how to best implement enterprise application architecture patterns using NHibernate, leading to clean, easy-to-understand code, and increased productivity. In addition to new v3.0 features, advanced readers will learn creative ways to extend NHibernate core, as well as techniques using the NHibernate search, shards, spatial, and validation projects.</p>
Table of Contents (15 chapters)
NHibernate 3.0 Cookbook
Credits
About the Author
About the Reviewers
Preface
Index

Configuring NHibernate with code


We can also configure NHibernate entirely in code. In this recipe, I'll show you how to use the NHibernate.Cfg.Loquacious namespace to configure NHibernate.

Getting ready

  1. Complete the Eg.Core model and mapping recipes from Chapter 1.

  2. Add a console application project to your solution named ConfigByCode.

  3. Set it as the Startup project for your solution.

  4. In the ConfigByCode project, add references to NHibernate.dll and NHibernate.ByteCode.Castle.dll in the Lib folder.

  5. In ConfigByCode, add a reference to the Eg.Core project.

How to do it…

  1. Add an App.config file with this configuration:

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
       <connectionStrings>
        <add name="db" connectionString="Server=.\SQLExpress; Database=NHCookbook; Trusted_Connection=SSPI"/>
      </connectionStrings>
    </configuration>
  2. In Program.cs, add the following using statements:

    using NHibernate.ByteCode.Castle;
    using NHibernate.Cfg;
    using NHibernate.Cfg.Loquacious...