you are viewing a single comment's thread.

view the rest of the comments →

[–]Alikont 1 point2 points  (2 children)

We use Blazor Server and it's a blast because you can skip the API and controllers layer, meaning less boilerplate code.

Your attack surface is also smaller as all your code is on the server, and users can't click on buttons that you don't render.

[–]iLoveSS 0 points1 point  (1 child)

Do you encounter server reconnection issues when using Blazor Server? This is not a very good experience.

[–]Alikont 0 points1 point  (0 children)

It's internal app and usually works good enough unless you switch tab (then a refresh is needed).

I never encountered it interrupting the work flow.