How can I map a stored procedure using mapping by convention or mapping by code?
If it is not possible then how to map it by hbm and include it into configuration done by Mapping by convention?
How can I map a stored procedure using mapping by convention or mapping by code?
If it is not possible then how to map it by hbm and include it into configuration done by Mapping by convention?
Nhibernate 3.2 allows you to mix your mappings; that is you can use the mapping by code syntax and still have your old hbm.xml files.
See this blog post to find out how.
For mapping a stored procedure then I recommend reading this nhibernate.info Blog post.