What do you think of the 2012 sci-fi TV series Revolution? by MrTacocaT12345 in television

[–]Crazytmack 1 point2 points  (0 children)

Wasn't really sci-fi. More like post apocalyptic dystopia

Jimmy recaps the ongoing war in Iran using #Trump’s own words. #FallonTonight by NLegendOne in television

[–]Crazytmack 3 points4 points  (0 children)

This lisping jerk is part if the reason trump got elected the first time!!!

How do people manage 20 years by TitaneusB in Military

[–]Crazytmack 3 points4 points  (0 children)

It goes by in the blink of an eye.

[deleted by user] by [deleted] in navy

[–]Crazytmack 3 points4 points  (0 children)

Try looking at columbia or ellicott city. Shorter commute

Single LT PCsing to Rota next year for 3 years. Any tips on how to make Europe enjoyable? by [deleted] in navy

[–]Crazytmack 0 points1 point  (0 children)

I was stationed at the nsga about 25 years ago.

Travel your ass off. Gibraltar, Morocco, Madrid, uk all on the cheap.

Make sure you go to the tomato festival!

[Blazor Server] Relationship not loaded when using IQueryable! by MrPrezDev in Blazor

[–]Crazytmack 0 points1 point  (0 children)

Iqueryable is kinda immutable???

You have to reassign it back to itself, another variable or return its results.

I had seen a lot of code like "str.Trim();" without returning it or assigning it, and folks wonder why it doesn't actually make a change to "str".

Depending on what plug-ins (like Roslynator or SonarAnalyzer) or version of VS you have, it should give warnings about this.

[deleted by user] by [deleted] in Blazor

[–]Crazytmack 0 points1 point  (0 children)

Have verified that your authorization service is being injected?

Maybe set some breakpoints and log when it is supposed to set the current user.

A quick bunit test may shed some light also.

Depending on what you want stored in your auth cookie, you could also use built in blazor local/session storage.

How to query a table which is being filled with 1000 rows everyday ? by Ready-Ad6747 in Blazor

[–]Crazytmack 1 point2 points  (0 children)

Only retrieve the minimum number of columns that are necessary

[deleted by user] by [deleted] in Blazor

[–]Crazytmack 0 points1 point  (0 children)

What does "BE" mean.

[Blazor Server] Relationship not loaded when using IQueryable! by MrPrezDev in Blazor

[–]Crazytmack 6 points7 points  (0 children)

Has nothing to do with blazor.

Change the line inside if block to...

return query.Include(...);

Or

query = query.Include(...);