private void CreateInitialData()
{
using (ISession session = SessionFactory.OpenSession())
{
using (ITransaction transaction =
session.BeginTransaction())
{
foreach (var city in _cities)
session.Save(city);
transaction.Commit();
}
}
}
How do I tell nhprof not to listen to this session?
--
You received this message because you are subscribed to the Google Groups "nhprof" group.
To post to this group, send email to nhp...@googlegroups.com.
To unsubscribe from this group, send email to nhprof+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nhprof?hl=en.