Dynamic updates via rest api events C #

I want to implement such a function as if something were updated on the server side, as in the database (the change may be from the client or another resource), then an event should be fired, and I will find out what change has been made . Then, through the rest api, I will send a response to the UI with the event code, message and new data from the database. And in the user interface, I have an approach to event handling. Please tell me the approach or training material to implement this feature.

+4
source share
1 answer

To use bidirectional communication between clients and a server, you can use one of the following frameworks depending on your requirements:

+2
source

Source: https://habr.com/ru/post/1671005/


All Articles