Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
NHibernate 4.x Cookbook

You're reading from   NHibernate 4.x Cookbook Over 90 incredible and powerful recipes to help you efficiently use NHibernate in your application

Arrow left icon
Product type Paperback
Published in Jan 2017
Publisher Packt
ISBN-13 9781784396428
Length 448 pages
Edition 2nd Edition
Arrow right icon
Authors (4):
Arrow left icon
Darshan Joshi Darshan Joshi
Author Profile Icon Darshan Joshi
Darshan Joshi
Alexander Zaytsev Alexander Zaytsev
Author Profile Icon Alexander Zaytsev
Alexander Zaytsev
Jason Dentler Jason Dentler
Author Profile Icon Jason Dentler
Jason Dentler
Gunnar Liljas Gunnar Liljas
Author Profile Icon Gunnar Liljas
Gunnar Liljas
Arrow right icon
View More author details
Toc

Table of Contents (11) Chapters Close

Preface 1. The Configuration and Schema FREE CHAPTER 2. Models and Mappings 3. Sessions and Transactions 4. Queries 5. Improving Performance 6. Testing 7. Data Access Layer 8. Extending NHibernate 9. NHibernate Contribution Projects Index

Setting up session-per-web request


Due to its simplicity, the most common pattern used in web applications for managing NHibernate sessions is session-per-request. In this recipe, we'll show you how to set up the session-per-request pattern using NHibernate's contextual sessions feature.

Getting ready

  1. Create a new ASP.NET web forms or ASP.NET MVC application.

  2. Add a reference to NHibernate using NuGet Package Manager Console.

  3. If it doesn't exist already, add a new global application class Global.asax.

  4. In Global.asax.cs, add these using statements:

    using NHibernate;
    using NHibernate.Cfg;
    using NHibernate.Context;
  5. Create a static property named SessionFactory:

    public static ISessionFactory SessionFactory { get; private set; }

Now you have two choices. You can either use the companion library, NH4CookbookHelpers to set up the base configuration or set everything up manually.

Option 1: Using the companion library

  1. Add a reference to NH4CookbookHelpers using NuGet Package Manager Console.

  2. In the Application_Start...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image