sqlmetal wrongly generates code for my sproc as ISingleResult. I need multiple results! Check this out. SqlMetal actually generates ISingleResult for a sproc like this:
CREATE PROCEDURE GetDetailReportData AS BEGIN select * from Log END
How do you get sqlmetal to generate with multiple results for a sproc?
Does anyone ever use sprocs with sqlmetal? It appears to be simply wrong. Please help steer me in the direction of a work around if there is one.
Thanks, willgroove