Harbour
Harbour
CC#
Created by biskit on 4/3/2025 in #help
Blazor Cascading value null exception even though instance exists
You could try initialise it via
[CascadingParameter] public GlobalUserInfo? userInfo {get;set;} = new GlobalUserInfo();
[CascadingParameter] public GlobalUserInfo? userInfo {get;set;} = new GlobalUserInfo();
3 replies
CC#
Created by biskit on 4/3/2025 in #help
Blazor Cascading value null exception even though instance exists
You say you’ve created it at the top of the code block but it’s throwing a null exception indicating it probably does not exist
3 replies
CC#
Created by KidKai25 on 3/14/2025 in #help
Should I still learn about best practices when AI could do it?
I used it the other day to parse some logs and calculate a total based on a value within these logs and it got it wrong 💀
37 replies
CC#
Created by KidKai25 on 3/14/2025 in #help
Should I still learn about best practices when AI could do it?
Agree with the above points ; you need to be able to verify to use the effectively. Interesting point about it stunting growth too; not really thought about it like that but it makes sense; I don’t use it often but when I have; I’ve noticed it’s not reliable.
37 replies
CC#
Created by Emn4tor on 3/13/2025 in #help
Edit Enum
Also wherever this enum is used you’d probably want a way to account for this new enum via some logic of some sort
16 replies
CC#
Created by RV on 3/12/2025 in #help
Blazor Web App Javascript not work after navigate back
Have a look at browser console for any errors; might some related to js not being accessible for some odd reason
2 replies
CC#
Created by ItzYahPizza on 2/23/2025 in #help
✅ JWT AUTH HELP. Postman Get Request Works. But when using the api in the frontend it doesnt
5173 here
76 replies
CC#
Created by ItzYahPizza on 2/23/2025 in #help
✅ JWT AUTH HELP. Postman Get Request Works. But when using the api in the frontend it doesnt
It says 5173 on your c# app but the request here says 5174 on origin
76 replies
CC#
Created by ItzYahPizza on 2/23/2025 in #help
✅ JWT AUTH HELP. Postman Get Request Works. But when using the api in the frontend it doesnt
Is your port correct
76 replies
CC#
Created by bliko on 2/21/2025 in #help
Google credentials.json & token.json in environment variables? Or in render? Or where?
np; just remember not to commit the secrets on a public repo 😂
8 replies
CC#
Created by bliko on 2/21/2025 in #help
Google credentials.json & token.json in environment variables? Or in render? Or where?
Could you extract some of the values from this json into an appsettings.json - don't deploy these secrets and build a pipeline to insert the secret values?
8 replies
CC#
Created by lemonbrown on 2/17/2025 in #help
✅ Azure Timer function logging ApplicationInsights Category value
Docs do explicitly say that the default naming scheme is “Function.{FunctionName}”
12 replies
CC#
Created by lemonbrown on 2/17/2025 in #help
✅ Azure Timer function logging ApplicationInsights Category value
I’m pretty sure you can adjust the category name via host.json
12 replies
CC#
Created by lemonbrown on 2/17/2025 in #help
✅ Azure Timer function logging ApplicationInsights Category value
How are you setting this category?
12 replies
CC#
Created by Demite on 2/16/2025 in #help
✅ Object is null after initializing
Also it’s “null” not null which would indicate something is setting its value to that elsewhere - I suspect it’s something in the class
12 replies
CC#
Created by Demite on 2/16/2025 in #help
✅ Object is null after initializing
Is WorldRegion your own class?
12 replies
CC#
Created by TKSDev on 2/16/2025 in #help
✅ switching from .net framework to 2.0 standard Library, dependencies problem?
That’s how I usually resolve a non functioning upgrade assistant at least
7 replies
CC#
Created by TKSDev on 2/16/2025 in #help
✅ switching from .net framework to 2.0 standard Library, dependencies problem?
You should be able to see these complaints in build console, or via dependencies on said project / class library - should show a yellow warning symbol on panel.
7 replies
CC#
Created by TKSDev on 2/16/2025 in #help
✅ switching from .net framework to 2.0 standard Library, dependencies problem?
From using the upgrade assistant before; I’ve noticed it’s not heavily reliable sometimes. It might be worth upgrading your project manually to desired framework and seeing which packages complain and upgrading to later / newer version or to newer if said package is deprecated
7 replies