将存储过程映射到返回临时表数据的实体
我有一个返回临时表数据的存储过程。因为我使用了动态查询。当我尝试使用复杂类型映射存储过程时,它不返回列
如何处理复杂类型中的临时表列名称?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下不支持它,因为 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.