Refreshing data in the UI inside the Load method after setting it for the first time

I think you have created an endless loop by calling the Load method recursively. This won't work. You can instead create a timer which invokes the Load method at a predefined interval and calls StateHasChanged at the end.

1 Like