Thalnos
Thalnos
CC#
Created by Edup on 3/20/2025 in #help
Repository Pattern and Clean Architecture
gc overhead is not somethign I care about ^^
46 replies
CC#
Created by Edup on 3/20/2025 in #help
Repository Pattern and Clean Architecture
it will be garbage collected when the program leaves the scope you were in
46 replies
CC#
Created by Edup on 3/20/2025 in #help
Repository Pattern and Clean Architecture
well I'm doing a projection anyway then to some DTO or ViewModel or whatever, so even if it would be tracking the materialized entity it would be garbagecollected when the obj is out of scope anyway. So you gotta then map back to a domain model on your update, which seems fine
46 replies
CC#
Created by Edup on 3/20/2025 in #help
Repository Pattern and Clean Architecture
but when I pick specific properties in the Select then EF will translate it to select prop1, prop2, prop3 opposed to select * will it not?
46 replies
CC#
Created by Edup on 3/20/2025 in #help
Repository Pattern and Clean Architecture
but you don't have to overfetch, you can just select or update what you want
46 replies
CC#
Created by Edup on 3/20/2025 in #help
Repository Pattern and Clean Architecture
wouldn't that kind of violate the core idea behind an ORM, that each table maps to a class in your code, and each class in your code maps to a table? In case of inheritance it makes sense if you use Table Per Hierarchy approach then multiple inherited types would be in the same table, but besides that I think thats not a good idea, messes with the simplicity of an ORM. There seems to be a way to do this https://learn.microsoft.com/en-us/ef/core/modeling/table-splitting#table-splitting But then I would rather seperate into different DTOs, ViewModels or whatever the context than into different Domain Models and select only what's needed for the mapping tho 🤔
46 replies
CC#
Created by Faker on 3/21/2025 in #help
✅ DateOnly.TryParse Vs DateOnly.TryParseExact use cases
as for the use cases. When you have control over the format of the string, then use TryParseExact to enforce a consistent style. When the format may vary, use TryParse
8 replies
CC#
Created by Faker on 3/21/2025 in #help
✅ DateOnly.TryParse Vs DateOnly.TryParseExact use cases
TryParse doesn't have an overload that lets you specify a format string like TryParseExact does. It only lets you specify an IFormatProvider and DateTimeStyles. But yes it is about how strictly your input string must match the provided format
8 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
I'll check it out 🙂
83 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
I see so avalaonia wasn't even an option. Any other options besides Maui I could go with?
83 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
oh yea it was a requirement for me to write the whole app with just one c# codebase for different platforms. I didn't wanna learn Java and Swift
83 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
so in that case what framework is prefered? I went with Maui just because lacking skill to judge how good frameworks are, and because its officially from microsoft
83 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
when I did it was because customer wanted a native app, not a webapp to have the app installed on devices rather than accessing via browser
83 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
what about this, do you suggest Avalonia instead? And why is that?
83 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
I see thank you guys
83 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
why tho?
83 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
so If I understand you right then razor pages is fine for some small app when you wanna stick to mostly c# and not wanna learn JS/TS, and blazor is just never a good choice cuz its dying out?
83 replies
CC#
Created by Nada on 2/15/2025 in #help
✅ Need Advice: Choosing the Right .NET Version for Our Project
will watch it thanks. My personally prefered tech stack is a Asp.Net Core WebApi backend with a React frontend so I think we share that preference, but I was surprised to hear that razor pages/blazor should be avoided. Razor pages is fairly new as a replacement of MVC, and Blazor is fairly new too and was praised as that new fancy thing with Webassembly and stuff so I thought both these approaches are up to date and quite popular. Maui integrates Blazor too for hybrid apps that run in browser and natively so it can't be very evil, so I thought @TeBeCo
83 replies
CC#
Created by merlo17 on 2/16/2025 in #help
if statement always returns true
oh never mind, not needed. I thought StartRandomEncounters() may not get invoked at all, but you're simply setting it to null at the end so that will be why its null. The method ends with activeEnemy = null;
26 replies
CC#
Created by merlo17 on 2/16/2025 in #help
if statement always returns true
show us how you call EngageCommand() and how you call StartRandomEncounters()
26 replies