3

タイトルで述べたように、Webリクエストごとにセッションを実装したいと思います。私のセッションプロバイダーはこのように構成されています(この設定を変更することに興味はありません)。

    public class SessionProvider
    {
        public static SessionProvider Instance { get; private set; }
        private static ISessionFactory _SessionFactory;

        static SessionProvider()
        {
            var provider = new SessionProvider();
            provider.Initialize();
            Instance = provider;
        }

        private SessionProvider()
        {

        }

        private void Initialize()
        {
            string csStringName = "ConnectionString";
            var cfg = Fluently.Configure()
                ....ommiting mappings and db conf.
                .ExposeConfiguration(c => c.SetProperty("current_session_context_class", "web"))
                .BuildConfiguration();
            _SessionFactory = cfg.BuildSessionFactory();    
        }

        public ISession OpenSession()
        {
            return _SessionFactory.OpenSession();
        }

        public ISession GetCurrentSession()
        {
            return _SessionFactory.GetCurrentSession();
        }
    }

Global.asax.cs内には、Web要求ごとのセッションに関連する次のコードがあります。

private static ISessionFactory SessionFactory { get; set; }

    protected void Application_Start()
    {
        SessionFactory = MyDomain.SessionProvider.Instance.OpenSession().SessionFactory;

        AreaRegistration.RegisterAllAreas();

        RegisterGlobalFilters(GlobalFilters.Filters);
        RegisterRoutes(RouteTable.Routes);

    }

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        var session = SessionFactory.OpenSession();
        CurrentSessionContext.Bind(session);
    }

    protected void Application_EndRequest(object sender, EventArgs e)
    {
        var session = CurrentSessionContext.Unbind(SessionFactory);
        session.Dispose();
    }

Webアプリケーションをデバッグすると、次のエラーが発生します。現在のセッションコンテキストが構成されていません。 global.asax行CurrentSessionContext.Bind(session);を参照するErrorMessage

更新 追加されまし.ExposeConfiguration(c => c.SetProperty("current_session_context_class", "web")) た。コントローラーからデータを取得する際に、次のような エラーメッセージが表示されます。エラーメッセージ:セッションが閉じられました。オブジェクト名:'ISession'。

コントローラーコード:

using (ISession session = SessionProvider.Instance.GetCurrentSession())
            {
                using (ITransaction transaction = session.BeginTransaction())
                {
                    data = session.QueryOver<Object>()
                       ...ommiting

                    transaction.Commit();
                    return PartialView("_Partial", data);
                }

            }    
4

1 に答える 1

5

最初の質問

nhibernate構成セクションで構成する必要があります。

<property name="current_session_context_class">web</property>

また、私は現在このようなことをしています:

if (!CurrentSessionContext.HasBind(SessionFactory))
{
    CurrentSessionContext.Bind(SessionFactory.OpenSession());
}

2番目の質問

構成を流暢に変更するには、次の記事を参照してください。currentsessioncontext fluent nhibernateそれを行う方法は?

3番目の質問

セッションを2回閉じています。

using (ISession session = SessionProvider.Instance.GetCurrentSession()) 

セッションを閉じます。その後、でもう一度やりましたApplication_EndRequest。別の質問がある場合は、新しい質問を投稿してください。

于 2012-05-21T19:05:34.733 に答える