Skip to content

Instantly share code, notes, and snippets.

@lukesmith
Created March 22, 2010 12:01
Show Gist options
  • Save lukesmith/340011 to your computer and use it in GitHub Desktop.
Save lukesmith/340011 to your computer and use it in GitHub Desktop.
this.For<IRepository<ICommandLog>>()
.Use(x => {
var session = x.GetInstance<ISessionFactory>().OpenSession();
session.FlushMode = FlushMode.Commit;
return new CommandLogRepository(new NHibernateUnitOfWork(session));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment