将存储过程映射到返回临时表数据的实体

发布于 2024-12-10 13:15:03 字数 84 浏览 0 评论 0原文

我有一个返回临时表数据的存储过程。因为我使用了动态查询。当我尝试使用复杂类型映射存储过程时,它不返回列

如何处理复杂类型中的临时表列名称?

I have a stored procedure that returns the temporary table data. because i have used dynamic queries. When i tried to map stored procedure using complex types it returns no columns

how to handle temporary table columns name in complex types?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡淡的优雅 2024-12-17 13:15:03

默认情况下不支持它,因为 EF 始终在执行存储过程之前执行SET FMTONLY ON。此选项将关闭逻辑执行 - 它只会要求元数据,但如果关闭逻辑执行,则不会创建临时表,并且不存在列的元数据。

一些解决方法

It is not supported by default because EF always executes SET FMTONLY ON before executing your stored procedure. This option will turn off logic execution - it will only ask for metadata but if logic execution is turned off no temporary table is created and no column's metadata exists.

There are some workarounds.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文