I have a Web API
where i want to trigger a function when a new row has been inserted to a DB table. I don't want to have to get all the data and look for new data manually.
Is it possible to have a SQL Server trigger
that somehow calls a function in my C# Web API
?
How can this be done? Is it a good idea?