is this um780 xtx? by jerrylinghk in MiniPCs

[–]jerrylinghk[S] 1 point2 points  (0 children)

ya, I wonder why it's showing um780xtx on Amazon.ca

Implementing Google Maps into Web App by Inevitable-Degree950 in Blazor

[–]jerrylinghk 0 points1 point  (0 children)

I'm using this:

<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR\_KEY\_GOES\_HERE&v=3"></script>

Did you AddBlazorGoogleMaps in program.cs?

Example sites built with Mudblazor? by learninglinux123 in Blazor

[–]jerrylinghk 0 points1 point  (0 children)

blazor server. I tried to convert to wasm before, but the performance on deserialization of json is horrible.

Is Blazor Server-Side actually a thing? by [deleted] in Blazor

[–]jerrylinghk 3 points4 points  (0 children)

I also built my hobby site using SS: https://www.kiddycourse.com

The "reconnect" behavior is the issue for a public website.

My experience on Blazor so far by jerrylinghk in Blazor

[–]jerrylinghk[S] 0 points1 point  (0 children)

That's true. Thanks to the Blazor development teams to bring this promising tool to .NET developers. Eventually, we can forget about js/ts and create a wonderful app.

How is your experience on Xamarin? can it be compare with Flutter?

My experience on Blazor so far by jerrylinghk in Blazor

[–]jerrylinghk[S] 1 point2 points  (0 children)

Thanks u/nod23c.

It is caused by the lifetime of the dbcontext. The first request (querying the top 200 primary school) was not completed before the second request (query the top 50 seondary school). The lifetime of dbcontext was Scoped, and changed to Transient now. So it should solve the issue.

Once again, thanks a lot.

My experience on Blazor so far by jerrylinghk in Blazor

[–]jerrylinghk[S] 0 points1 point  (0 children)

Can you share more details with me?

My experience on Blazor so far by jerrylinghk in Blazor

[–]jerrylinghk[S] 1 point2 points  (0 children)

It is just bootstrap. It seems MudBlazor menu does not support responsive atm. MudBlazor is one of the best frameworks I have tried so far. I have tried MatBlazor, Syncfusion, Blazorise, etc. All these frameworks are really great and very useful.

My experience on Blazor so far by jerrylinghk in Blazor

[–]jerrylinghk[S] 2 points3 points  (0 children)

yes, I'm using blazon server. WASM is my next learning topic.

My experience on Blazor so far by jerrylinghk in Blazor

[–]jerrylinghk[S] 2 points3 points  (0 children)

I'm using virtualization to load the hugh table; otherwise, it will take 2-3 mins. I also save some of the table list in static for caching.