Fluent NHibernate - 用于管理 SessionFactory/Session 的良好完整工作助手类?
我正在经历 nHibernate Helper Class 问题所以...我想获得一个Fluent nHibernate
的辅助类...任何人都可以提供/引用一个适当的OO类型辅助类来管理SessionFactory的单例,然后也用于管理会话?
I was going through nHibernate Helper Class question on SO... I would like to get a helper class for fluent nHibernate
... can anyone provide/refer a proper OO type helper class for managing a singleton of the SessionFactory and then also for managing Sessions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Fluent NHibernate 只是 NHibernate 映射 API 之上的一层,允许程序员使用代码和约定而不是 XML 或属性来映射实体。它与 NHibernate 的会话无关。
NHibernate 的大部分代码(包括会话工厂和会话的帮助程序)也适用于 Fluent NHibernate。
Fluent NHibernate is only a layer on top of NHibernate's mapping API, allowing the programmer to map entities using code and conventions instead of XML or attributes. It has no relation to NHibernate's sessions.
Most of the code for NHibernate (including helpers for session factories and sessions) applies to Fluent NHibernate as well.