The project on which i am working has a very complex business and data logic. I have around 90 tables and 250 stored procedures in my database.
I have seen very basic samples on Nhibernate through which the operations are performed on database.
I just want to know if we have a huge complex logic then how can we use nhibernate.
Also currently in some scenarios I handle the business logic at stored procedure level so if there is a slight change just making some changes in stored procedure sets things right for me. But if i am using Nhibernate how can i work with stored procedures and create complex situations work for me.
Can i get sample code in C# which uses nhibernate and contains complex real world scenarios.