Reputation: 341
Is there an solution to make a Asp.Net core backend "real time"? What i mean on realtime is, for example an angular framework app conects to the backend, and when someone updates something in the database it notifies the connected frontend about it.
Like how the firebase realtime database/firestore works.
Upvotes: 2
Views: 3121
Reputation: 146
My tip would also be SignalR in combination with websockets. On this page you will find helpful codes samples: Introduction to ASP.NET Core SignalR
On these two pages you will find an overview of how SignalR is structured. A practical example can be found here: Hands On Lab: Real-Time Web Applications with SignalR
Upvotes: 4