I've a requirement for which I need to have WebAPI get method, which should latest records of a table, and this api get method will be continuosly called from another webAPI method continously to insert the data into the tables.
We are bound to have two webAPIs as we cannot directly interact with the database due to security issues. Could someone please suggest the best approach for implementing this.
One way I know is to call the get WEBAPI method, from the APP_start of the calling WebAPI within a timer. Please suggest the approach. Thanks for the help.