How to return values from a dynamic SQL Stored Procedure to the Entity Framework?

前端 未结 7 1519
再見小時候
再見小時候 2020-12-15 01:49

I have a Stored Procedure which executes some dynamic SQL. I want to use this Stored Procedure in entity framework 4, but when I try to create a complex type the procedure r

相关标签:
7条回答
  • 2020-12-15 02:23

    add following line at beginning of your SP

    SET FMTONLY OFF
    
    0 讨论(0)
提交回复
热议问题