Hello,
I have implemented an ASP.NET Core Web API v1.1 which has a controller that executes a sql query (mostly it executes sp calls) and returns a DataTable. The problem is that when I run the Web API locally with IISExpress returns the DataTable as expected, but after publishing and copying the files to IIS remotely, although it returns Ok, the data is empty. Is there any reason for this to be happening? Does anyone here confronted such an issue and found any solution?
Thanks.