I have a SQL Server database with one table and I am doing operations using Entity Framework 6 in C#.
I have a jQuery in my frontend which calls a method in the C# backend and loads the data from the database using Entity Framework.
Now I want to invoke this method automatically as soon my table in database gets any new rows / data.
I don't want to use SignalR, wants to keep it simple as possible.
I am still figuring out the best possible and easiest way to do this. If I add a trigger on my table in SQL Server, then how it will invoke my jQuery method or C# method?