タイトルで述べたように、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);
}
}