I am working on integrations so I am building an api in .NET Core 2
and Entity Framework 7
for a system that was built in ASP.NET MVC 5
and EF 6
to communicate with other API's
. Here is an image of what it looks like
I would like my asp.net core 2
API to listen to changes in SQL Server
rather than being notified by the MVC
app every time a change happens.
I read this article here sqldependency. SQLdependency
is around 15 years old, is this still the standard way of listening to DB changes or is there another way I could do this?