Click here to Skip to main content
15,887,683 members
Articles / Programming Languages / C#

Keeping Entity State Over Multiple NHibernate Sessions

Rate me:
Please Sign up or sign in to vote.
4.86/5 (6 votes)
11 Sep 2010CPOL4 min read 28.7K   568   9  
This article and the attached ready to use code demonstrates how you can maintain an entity state over multiple NHibernate sessions.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace StatefullEntityProxies
{
    /// <summary>
    /// Interface for a statefull proxy - a proxy for some entity that also holds a state keeper
    /// that manages the state
    /// </summary>
    public interface IStatefullProxy
    {
        StateKeeper StateKeeper { get; }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Architect
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions