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?
Asked
Active
Viewed 1,036 times
0
-
It's the same, really. There is no difference. Or maybe you want something else... – Mauricio Scheffer Jun 16 '10 at 12:19
-
@Mauricio i started with Fluent nhibernate straight away without studing nhibernate so i thought of getting a helper class... Can i use the same helper class... – ACP Jun 16 '10 at 12:26
1 Answers
3
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.

Mauricio Scheffer
- 98,863
- 23
- 192
- 275