我们正在使用 Nhibernate 连接到本地 firebird 数据库文件。我们目前加载它嵌入,但在某些情况下需要释放它,以便可以移动或删除磁盘上的文件。简单地在 nhibernate 中关闭和处理 sessionfactory 是行不通的。该文件仍在使用中。
using (ISessionFactory sessionFactory = configuration.BuildSessionFactory())
{
using (ISession session = sessionFactory.OpenSession())
{
using (System.Data.IDbCommand command = session.Connection.CreateCommand())
{
// commands removed
}
}
sessionFactory.Close();
}
// file is still "in use" here
这是可能的还是我们需要开始一个单独的过程?