i am a little overwhelmed by all the Information about Blazor Wasm and Blazor Server. Until now, I have a 5 years old ASP.NET MVC App with a SignalR Hub running to notify my View, when something changed in the Database.
Let's be clear here. I have an existing Database Record. I present this database record to useres in an MVC View. Users are watching this View, and when an external source does an update to this record in the DB, the Partial View refreshes without reloading the whole Website.
As of now, I have a Blazor Webassembly hosted by .NET Core API and could easily switch to Blazor Server.
is this currently possible in Blazor Server/Blazor WASM... I'd prefer WASM if in anyway possible :)
Thanks in advance <3