在哪里引用 session.BeginTransaction?

发布于 2024-09-11 13:00:28 字数 79 浏览 3 评论 0原文

必须使用的dll是什么?我在哪里可以得到它?

我正在使用 Nhibernate,我可以将它与 NHibernate 一起使用吗?

What is the dll that must be used? Where can I have it?

I am using Nhibernate, can I use it with NHibernate?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三生路 2024-09-18 13:00:28

BeginTransaction() 是 NHibernate 会话上的一个方法。它是当前版本 NHibernate 中 NHibernate.dll 的一部分。

BeginTransaction() is a method on the NHibernate session. It's part of the NHibernate.dll in the current version of NHibernate.

七度光 2024-09-18 13:00:28

来源:http://www.fincher.org/tips/Languages/NHibernate.shtml< /a>

using (ISession session = OpenSession()) {
  using (ITransaction transaction = session.BeginTransaction()) {
    IQuery query = session.CreateQuery("FROM Pet WHERE PetName = 'Rosie'");
    Pet pet = query.List<Pet>()[0];
    session.Delete(pet);
    transaction.Commit();
  }
}


static ISessionFactory SessionFactory;
static ISession OpenSession() {
  if (SessionFactory == null) //not threadsafe
      { //SessionFactories are expensive, create only once
    Configuration configuration = new Configuration();
    configuration.AddAssembly(Assembly.GetCallingAssembly());
    SessionFactory = configuration.BuildSessionFactory();
  }
  return SessionFactory.OpenSession();
}

http://www.google.com/search?q=session .begintransaction+nhibernate

Source: http://www.fincher.org/tips/Languages/NHibernate.shtml

using (ISession session = OpenSession()) {
  using (ITransaction transaction = session.BeginTransaction()) {
    IQuery query = session.CreateQuery("FROM Pet WHERE PetName = 'Rosie'");
    Pet pet = query.List<Pet>()[0];
    session.Delete(pet);
    transaction.Commit();
  }
}


static ISessionFactory SessionFactory;
static ISession OpenSession() {
  if (SessionFactory == null) //not threadsafe
      { //SessionFactories are expensive, create only once
    Configuration configuration = new Configuration();
    configuration.AddAssembly(Assembly.GetCallingAssembly());
    SessionFactory = configuration.BuildSessionFactory();
  }
  return SessionFactory.OpenSession();
}

http://www.google.com/search?q=session.begintransaction+nhibernate

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文