I am new to Blazor (Server Side) and in my prototypes I was wondering, if it is possible to trigger server side events (As there is always an open connection between client and server, maybe there is a native way to do that in the latest version 8).
I’d like to implement a sample use case, where a user edits some metadata about a person in a Blazor/Razor form. At the same time, another user starts to edit that person and both forms get updated. So both can see the changes from the other user (like known from Google Docs or Office 365).
In my research, most recommendations are about SignalR, as described here:
/a/68000071/1099519
In the updated version of this Stackoverflow article, there is also the link to JSRuntime.
Is there a native way in Blazor (server side) or do I need to use another technology, what would you recommend for that?