I have created a Blazor webapp that shows a calendar-like page with various 'events' on it. You can drag/drop these events between days.
How do you recommend when multiple users are looking at similar dates, they will be able to see the changes being made by another user(s)?
The data for the calendar is being retrieved from a .NET API and then stored in memory for each of use. As the user drag/drops, the event is updated on their UI and also in the database.
I do not have much Blazor experience but I feel like this should be possible?