关于 NHibernate 的 ISession
在这个问题中,用户询问关闭会话的更好方法,因为他遇到了一些错误。
得票最多的答案是 Ayende 的答案:
您应该始终使用 session.Dispose();其他的是非常奇怪的事件
我真的应该总是调用 session.Dispose()
吗?调用 session.Close()
还不够吗?
In this question, the user asks the better way to close sessions because he was having some errors.
The most voted answer is Ayende's answer that says:
You should always use session.Dispose(); The other are for very strange occurances
Should I really always call session.Dispose()
? Isn't enough to call session.Close()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Session Dispose() 所做的事情不仅仅是 Close(),所以是的,始终使用 Dispose()
Session Dispose() does a couple more things than just Close()ing, so yes, always use Dispose()
.net 中的经验法则是“如果类是
IDisposable
,则始终调用Dispose
”,但最好使用using
Rule of thumb in .net is "if class is
IDisposable
always callDispose
", but better useusing