I have create an asp.net core mvc / server side blazor web application.
I have an sql-server database with entityframework core.
I want to display a table content in a page. I have follow WeatherForecastService example. Everything works fine.
What i want to do is to auto refresh the listing if another user is inserting, updating or deleting an item in the database.
I think there is a way to do that with signalR, but is there a simple way to do that automatically with Blazor ?
Thanks