I have noticed some people come to this blog for reference on using Castle Windsor together with NHibernate and ASP.NET MVC, so I have to mention a few things that have happened since I last posted about it several years ago. First of all ,there is an excellent sample application that shows the simplicity with which you can hook these things up.
The sample shows you how to register Castle in an MVC application. how to add logging and how to hook up NHibernate 3.2 . This is far, far easier than what I described years ago thanks to improvements in all involved frameworks, really.
The important things to remember are:
- Use NuGet to install your libs
- Use MVC:s way of installing an IoC container (as demonstrated)
- Use logging, you might as well.
- Hook up the NHibernate Session Factory as a singleton and hook up ISession to request a new transient session from your singleton SessionFactory. There you go, the magic is taken care of.
- This is not mentioned in the demo, but if you are going building production code consider buying a subscription for NHProf if you don’t have one already. It wlll tell you where you mess up and need to do better.
- As above, look into hooking up Glimpse, see Scott Hanselman’s blog about it below.
Castle Windsor + NHibernate + log4net + ASP.NET MVC Sample
Windsor tutorial ASP.NET MVC 3-application To-be-Seen
Scott Hanselman on Glimpse:
If you’re not using Glimpse…