Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for any kind of documentation, an open source nhibernate winform application that i can study, or even better a winform / nhibernate framework. I saw a little bit of it in Nhibernate contrib and NhAddins but that s all. There is plenty about web but very few about winform. Why is that ?

share|improve this question

5 Answers

This article by Oren Eini is the best example of how to implement a desktop windows application I have seen. The design patterns and best practices it details should apply to either WinForms or WPF\Silverlight applications.

share|improve this answer

The reason why there are so few examples for winforms, is imho, managing sessions is a lot more complex in smart clients than in the web world.

In the web world you open a ISession when a http session starts, and you close the ISession when the http session is finishing.

There is no direct translation of the concept of http session in a smart client; multiple screens all open at the same time, some minimised, other screens opening and closing all the time, some get closed without saving changes... you get the idea.

I think there are three basic strategies:

1 session per application

I would stay away from this. Remember, if an exception, like a stale entity exception is thrown by your singleton session, that session is now unusable. Your app is basically in the doo doo.

Session per screen

This is a bit better, you avoid your app going down the pan if a single session blows up. However, some screens might collaberate together in the same unit of work. They need to share the same session or you will have issues trying to share your entities between screens as persistent entities have affinity with the session that loaded them.

Persistent conversations

I think this is the way to go. You define a service which holds the scope of your unit of work. Everytime you call methods on this service, the correct ISession is swapped in invisibly for you. When you are finished with your service, you call another method on it and the session is disposed of.

The instance of the service can be shared between your screens, thus they share the session. Multiple sessions can be open at the same time. All of this is done via Aspect Oriented Programming techniques, you don't need take any action other that to tag up your services with attributes.

This sounds quite complicated so checkout Fabio's posts on it here, here and here.

There is an implementation of this pattern in unoffical nh addins. This works in Windsor, probably could convert it to other IoC containers.

share|improve this answer

Fabio Maulo has a nice post regarding session management in a WinForms app, there is also a sample application download linked at the bottom.

share|improve this answer

There is a work in progress discussing mixing nHibernate + Windows forms written by Sebasian Talamoni available here. It includes discussion + code.

share|improve this answer
Thanks for the link, i allready tried this sample app a while ago. The documentation included in the zip is interresting. I would like to find some other articles like this one. Do you know if the the author has published a sequel ? – alfredo dobrekk Jul 23 '09 at 0:26
I don't know of any off the top of my head. THat article has useful, interesting info. Google searching returns a lot of other info,though. – Reed Copsey Jul 23 '09 at 0:30
I d like to find something directly useable, like the tons and tons of blog platform u can find but for nHibernate. And Winform :). – alfredo dobrekk Jul 23 '09 at 1:27

I found this one which is much more recent. It has code generation and uses spring.net http://www.codeproject.com/KB/cs/NHibernateForWinforms.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.