Home > Back-end >  Unable to Generate Result_set from Stored procedure in c#
Unable to Generate Result_set from Stored procedure in c#

Time:08-09

Temp Table return data from Stored procedure doesnot create Modal class in Entity c# and it returns int. Select Test 1,test2,test3,test4 from #temp1

sql side working and get the as expected after adding this procedure to my entity frame work result set is not generating instead of class it is generating int class Please suggest is anything wrong done from side. And also suggest whether temp table returns Result columns in entity.

CodePudding user response:

Add SET FMTONLY OFF in SP that will work

  • Related