Can we call a STOREDPROC which inserts data into db wich has no return value from NHIBERNATE? if so can any one please help me out with a small sample.(hbm
|
feedback
|
|
I don't know if it works if you define the query in XML, but you can simply create an | |||
|
feedback
|
|
Use ADO.NET, -Get Connection object from NHibernate session, -Create a Dbcommand -Set your procedure in Dbcommand text -Run the command Note: NHibernate might supprot stored procs but its a complicated process refer to this link, so opt ADO.NET which is optimum in your scenario. | |||
|
feedback
|
|
This is one way:- In your mappings file:-
and your code is:-
| |||
|
feedback
|