We have a stored procedure that returns multiple tables. When called using NHibernate, we use a bean transformer, but we only convert the first table and all other results are ignored.
I know that NH can handle multiple requests in a single db trip using futures, but we only have one request, and it gives a result similar to what we get with futures, but getting it from a stored procedure.
I believe this scenario is quite common, but did not find any clues. Can NH be used to produce such results?
sql stored-procedures nhibernate
Alexey Zimarev
source share