I am using StructureMap with Nhibernate and I would like to instruct the tool to build a new session everytime is needed, and only if is disposed.
I'll try to explain with some code (this is a console application).
I build my session factory this way (ConnDb is my connection string):
For<ISessionFactory>()
.Singleton()
.Use(() => new NHSessionFactory(ConnDb, true).SessionFactory);
and this is the code I use to build a session:
For<ISession>()
.Singleton()
.Use(x => x.GetInstance<ISessionFactory>().OpenSession());
Everything works as expected when I don't dispose the session but I would like to be able to do something like this:
using (session)
{
using (var tx = session.BeginTransaction())
{
// DO SOMETHING
tx.Commit();
}
}
using (session)
{
using (var tx = session.BeginTransaction())
{
// DO SOMETHING
tx.Commit();
}
}
I've tried to change the code for the session, like this:
For<ISession>()
.AlwaysUnique()
.Use(x => x.GetInstance<ISessionFactory>().OpenSession());
but I've noticed that now a new session is created even if there's one active. In my situation I am referencing another component (Rhino.Security) which resolve the ISession with a service locator.