Book Image

NHibernate 2 Beginner's Guide

By : Aaron Cure
Book Image

NHibernate 2 Beginner's Guide

By: Aaron Cure

Overview of this book

<p>NHibernate is an open source object-relational mapper, or simply put, a way to retrieve data from your database into standard .NET objects. Quite often we spend hours designing the database, only to go back and re-design a mechanism to access that data and then optimize that mechanism. This book will save you time on your project, providing all the information along with concrete examples about the use and optimization of NHibernate.<br /><br />This book is an approachable, detailed introduction to the NHibernate object-relational mapper and how to integrate it with your .NET projects. If you're tired of writing stored procedures or maintaining inline SQL, this is the book for you.<br /><br />Connecting to a database to retrieve data is a major part of nearly every project, from websites to desktop applications to distributed applications. Using the techniques presented in this book, you can access data in your own database with little or no code.<br /><br />This book covers the use of NHibernate from a first glance at retrieving data and developing access layers to more advanced topics such as optimization and Security and Membership providers. It will show you how to connect to multiple databases and speed up your web applications using strong caching tools. We also discuss the use of third-party tools for code generation and other tricks to make your development smoother, quicker, and more effective.</p>
Table of Contents (19 chapters)
NHibernate 2
Credits
About the Author
About the Reviewers
Preface
Index

Time for action – adding some custom logging


Now that we have all the key pieces of our application in place, let's add some logging information to our Ordering.Console application to give us some information about what's going on inside.

  1. The first thing we need to do is add a using or Imports statement to the main class of our application.

    using log4net;

    And in VB.NET:

    Imports log4net;
  2. Next, let's add a new logger to the class so that we can add logging messages. Inside the class or module, add the following code to get a local instance of the logger:

    private static ILog log = LogManager.GetLogger(typeof(Program));

    Once again in VB.NET:

    Private log As ILog = LogManager.GetLogger(GetType(Module1))
  3. Now we're ready to log some data. Let's start out by adding some simple instrumentation timings. Let's find out how long it's taking us to configure NHibernate.

    Under the line log4net.Config.XmlConfigurator.Configure(), let's add a start time to base our timings on:

    Stopwatch sw = Stopwatch.StartNew();

    The...