Entity Framework can't handle a simple table variable?

前端 未结 2 1299
眼角桃花
眼角桃花 2020-12-03 03:58
  • The last line in the stored procedure: select * from @t
  • Updated model and it found the stored procedure
  • Tried to import a new function u
2条回答
  •  北荒
    北荒 (楼主)
    2020-12-03 04:19

    When entity framework tries to retrieve columns from stored procedure it calls SET FMTONLY ON and after that executes the stored procedure. When FMTONLY is ON execution returns only metadata and it doesn't work with some advanced construction in stored procedures - for example dynamic SQL, temporary tables and also table variables.

    You have three choices:

    • As described in another answer add SET FMTONLY OFF at beginning of your stored procedure. This will cause your stored procedure to really execute so make sure it only reads data - any insert, update or delete will be executed each time you try to retrieve columns!
    • Manually define complex type
    • Modify your stored procedure to not use any of this features

提交回复
热议问题