I can get NHibernate (v2) to return and process a single SYS_REFCURSOR that contains my single resultset. Is it possible for multiple resultsets/SYS_REFCURSOR's in NHibernate? What would be the syntax of the .hbm.xml file to map multiple resultsets from the SYS_REFCURSOR's?

thanks.

link|improve this question

70% accept rate
feedback

1 Answer

I am fairly sure the answer is no, this isn't possible. You have two options to work around this: use a MultiQuery against two stored procs to batch the calls or 2) use the database connection and ADO.NET.

link|improve this answer
What is "MultiQuery"? thanks for the reply btw. – Niner Jul 12 '10 at 20:17
MultiQuery allows you to send multiple SQL statements in a single batch. See knol.google.com/k/fabio-maulo/nhibernate-chapter-16-improving/…. – Jamie Ide Jul 12 '10 at 20:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.