如何使用 NHibernate 处理来自 Oracle 存储过程的多个结果集/SYS_REFCURSOR
我可以让 NHibernate (v2) 返回并处理包含我的单个结果集的单个 SYS_REFCURSOR。 NHibernate 中是否可以有多个结果集/SYS_REFCURSOR? .hbm.xml 文件从 SYS_REFCURSOR 映射多个结果集的语法是什么?
谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相当肯定答案是否定的,这是不可能的。您有两种选择来解决此问题:对两个存储过程使用 MultiQuery 来批处理调用,或者 2) 使用数据库连接和 ADO.NET。
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.