Thalnos
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
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
✅ 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 format8 replies
✅ 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
✅ 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