Intro - Client side (wasm Blazor) Flashcards
(7 cards)
What is the difference between client side blazor and web assembly blazor?
None. They mean the same technology: running a C# SPA over web assembly.
What is blazor’s release timeline?
September 2019 blwazor server side. may 2020 client side. late PWA hybrid native
What happens to the programs’ DLL when using client side blazor?
They are downloaded by the browser in the client.
What is not recommended to be used in web assembly blazor?
IHttpClientFactory and EF Core
How to share most of the code between server side and wasm blazor?
Using a razor class library (targets to .net standard).
Which file is not present in the was blazor app and is on server side blazor?
_host.cshtml is present on serverside but not on client. Instead the client has the index.html.
What has to be included in the blazor class lib to make it work properly?
AspNetCore.Components and “.Web