当前位置: 首页>>代码示例>>C#>>正文


C# ISessionFactory.Close方法代码示例

本文整理汇总了C#中ISessionFactory.Close方法的典型用法代码示例。如果您正苦于以下问题:C# ISessionFactory.Close方法的具体用法?C# ISessionFactory.Close怎么用?C# ISessionFactory.Close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ISessionFactory的用法示例。


在下文中一共展示了ISessionFactory.Close方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CloseSession

        internal static void CloseSession(ISessionFactory sessionFactory)
        {
            if (_session != null)
            {
                // If using Option 1, incude this
                //var session = CurrentSessionContext.Unbind(sessionFactory);
                //session.Dispose();

                sessionFactory.Close();
                _session = null;
            }
        }
开发者ID:andy-thomas,项目名称:Trails2010,代码行数:12,代码来源:NHibernateSessionTracker.cs

示例2: CloseSessionFactory

        public void CloseSessionFactory(ISessionFactory sessionFactory)
        {
            CloseSession();

            if (sessionFactory != null)
            {
                if (!sessionFactory.IsClosed)
                {
                    sessionFactory.Close();
                }

                sessionFactory = null;
            }
        }
开发者ID:GersonDias,项目名称:studies,代码行数:14,代码来源:SessionManagerInstance.cs

示例3: SaveOrUpdateEntity

 /// <summary>
 /// 保存或更新实体
 /// </summary>
 /// <param name="entity"></param>
 public void SaveOrUpdateEntity(BaseEntity entity)
 {
     ISessionFactory factory = null;
     ISession session = null;
     ITransaction transaction = null;
     // Tell NHibernate that this object should be updated
     try
     {
         factory = Connection.getConfiguration().BuildSessionFactory();
         session = factory.OpenSession();
         transaction = session.BeginTransaction();
         session.SaveOrUpdate(session.Merge(entity));
         // commit all of the changes to the DB and close the ISession
         transaction.Commit();
         //MessageBox.Show("保存成功");
     }
     catch (Exception e)
     {
         if (transaction != null && transaction.IsActive)
         {
             transaction.Rollback();
         }
         throw e;
     }
     finally
     {
         if (session != null && session.IsOpen)
         {
             factory.Close();
             session.Clear();
             session.Close();
             factory.Dispose();
             session.Dispose();
         }
     }
 }
开发者ID:MaShi596,项目名称:WorklogWebApi,代码行数:40,代码来源:BaseService.cs


注:本文中的ISessionFactory.Close方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。