views:

680

answers:

5

I'm currently building an ASP.NET MVC project, with NHibernate as its persistance layer.

For now, some functionnalities have been implemented, but only use local NHibernate sessions: each method that accessed the database (read or write) needs to instanciate its own NHibernate session, with the "using()" directive.

The problem is that I want to leverage NHibernate's Lazy-Loading capabilities to improve the performance of my project.

This implies an open NHibernate session per request until the view is rendered. Furthermore, simultaneous request must be supported (multiple Sessions at the same time).

How can I achieve that as cleanly as possible?

I searched the Web a little bit and learned about the session-per-request pattern. Most of the implementations I saw used some sort of Http* (HttpContext, etc.) object to store the session. Also, using the Application_BeginRequest/Application_EndRequest functions is complicated, since they get fired for each HTTP request (aspx files, css files, js files, etc.), when I only want to instanciate a session once per request.

The concern that I have is that I don't want my views or controllers to have access to NHibernate sessions (or, more generally, NHibernate namespaces and code). That means that I do not want to handle sessions at the controller level nor the view one.

I have a few options in mind. Which one seems the best ?

  • Use interceptors (like in GRAILS) that get triggered before and after the controller action. These would open and close sessions/transactions. Is it possible in the ASP.NET MVC world?
  • Use the CurrentSessionContext Singleton provided by NHibernate in a Web context. Using this page as an example, I think this is quite promising, but that still requires filters at the controller level.
  • Use the HttpContext.Current.Items to store the request session. This, coupled with a few lines of code in Global.asax.cs, can easily provide me with a session on the request level. However, it means that dependencies will be injected between NHibernate and my views (HttpContext).

Thank you very much!

+1  A: 

Take a look at S#arp Architecture. It is a very nice architecture for ASP.NET MVC and NHibernate.

Nebakanezer
A: 

You can add an action filter that can manage your NHibernate session & transactions. (This can be done at the action or controller level.) Here is an example of it:

http://weblogs.asp.net/srkirkland/archive/2009/09/03/asp-net-mvc-transaction-attribute-using-nhibernate.aspx

Josh
A: 

Use DI along with an IoC. Most IoC's come with a per-request instantiation behaviour.

Charlino
+3  A: 

Well guys, after a few days' work, I finally decided to use the HttpContext.Current.Items to load the session.

It works great!

Here's how I did it

import System.Web
class SessionManager {
    public static ISession GetSession()
        var session = HttpContext.Current.Items["NHibernateSession"];
        if (session == null) {
            session = ...; // Create session, like SessionFactory.createSession()...
            HttpContext.Current.Items.Add("NHibernateSession", session);
        }
        return session;
    }

    public static void CloseSession()
    {
        var session = HttpContext.Current.Items["NHibernateSession"];
        if (session != null) {
            if (session.IsOpen) {
                session.close();
            }
            HttpContext.Current.Items.Remove("NHibernateSession");
        }
    }
}

By using the static methods provided by this class, one can get a session (for example, in a Controller) that is tied to the current HttpContext (the current Web request). We need another snippet of code to call the CloseSession() method when the request is completed.

In Global.asax.cs:

protected void Application_EndRequest(object sender, EventArgs args)
{
    NHibernateSessionManager.CloseSession();
}

The Application_EndRequest event is automatically called when the session is completed, so the session can be properly closed an disposed of. This is useful, because otherwise we would have to do this in every Controller!

Guillaume Gervais
Can you give more detail please for those of us trying to figure out how to set this up?
Joe Philllips
@joe-phillips: see my edit, I explained it!
Guillaume Gervais
A: 

My "solution" involves using Unity to inject session per request in controllers:

http://letsfollowtheyellowbrickroad.blogspot.com/2010/05/nhibernate-sessions-in-aspnet-mvc.html

Giorgio Bozio