I have a stored procedure in SQL Server that returns data from a view.
It basically does a SELECT
statement like this:
SELECT *
FROM MY_VIEW...
Using .NET 4.6, I'm calling it with ExecuteFunction
.
I modified the view adding a new column and the stored procedure is not returning the new column's data. All my .NET models are already working expecting the new data, but it is just returning the default value.
If I do a SELECT *
directly in SQL Server it does return the new data.
I have tried refreshing the view, recompiling the stored procedure with no success.
What am I missing? What am I doing wrong?