I have a stored procedure that returns one value
The very last line in the stored proc is
SELECT @newOrderNum as newOrderNum
newOrderNum is an integer.
When I go to execute this function in Radzen and try to store the value, I use ${result.First().newOrderNum} and this fails saying "does not contain a definition for 'First'"
The weird thing is that I did the exact same thing for a different stored proc, which returned a string instead of an int, and it works flawlessly.
How do I grab the results of a storedprocedure that only returns one value (an int)?