是否有必要在交易中包装nHibernate期货?
如:
using (var s = sf.OpenSession())
using (var tx = s.BeginTransaction())
{
var blogs = s.CreateCriteria<Blog>()
.SetMaxResults(30)
.List<Blog>();
var countOfBlogs = s.CreateCriteria<Blog>()
.SetProjection(Projections.Count(Projections.Id()))
.UniqueResult<int>();
Console.WriteLine("Number of blogs: {0}", countOfBlogs);
foreach (var blog in blogs)
{
Console.WriteLine(blog.Title);
}
tx.Commit();
}
从这里开始:
https://ayende.com/blog/3979/nhibernate-futures
我看不出这样做的理由。这是一个选择而不是插入,或更新等。
答案 0 :(得分:3)
当NHibernate查询没有显式地包装在事务中时,它被称为“隐式事务”,这是不鼓励的,并且具有各种含义,包括使第二级高速缓存无效。这一切都在这里解释:
https://hibernatingrhinos.com/Products/nhprof/learn#DoNotUseImplicitTransactions
摘录:
即使我们只是读取数据,我们也应该使用事务,因为使用事务可以确保我们从数据库中获得一致的结果。 NHibernate假定对数据库的所有访问都是在事务下完成的,并强烈反对在没有事务的情况下使用会话。