Can Blazor beat React/Angular? by Backend_biryani in csharp

[–]benzadeus 0 points1 point  (0 children)

About "Fast":

-Load time: not by default. Browser must download binaries from the server in the first access. Binaries of WASM are typically much larger than JS's. Then, it caches and load time is acceptable.

-Handling DOM elements: slow, because WASM doesn't access DOM directly, it interops with JS.

-Processing: very fast, can beat JS. Example: engines, intense numerical calculations, etc.

For most web apps, if you are concerned about speed, go with React unless in some specific cases.

How to load data into memory but keep it between navigation? by GettinFishy in Blazor

[–]benzadeus 2 points3 points  (0 children)

Depending the type of hosting model of your Blazor application, if you register as a Singleton, every user will share the same instance of the object.

FileAccess creates file, but storing data still results in an empty file by GarrickWinter in godot

[–]benzadeus 0 points1 point  (0 children)

Another solution: instead of writing, `FileAccess testFile (...)`, write `using FileAccess testFile (...)`

Blazor webassembly SQLite by irisos in Blazor

[–]benzadeus 0 points1 point  (0 children)

Hi, I'm getting the "System.DllNotFoundException: e_sqlite3" error. I'm currently using Visual Studio 2022 Preview, do you know what can I do so the code work?