(no title)
skeletal88 | 11 days ago
Had to look at some c# backend code. To write any kind of endpoint that talked to a database they had to write at least... 7? different files, lots of empty interfaces that has to be created and implemented, command, mediator patterns everywhere, etc. Looked like insanity compared to Spring Boot
piskov|10 days ago
https://learn.microsoft.com/en-us/aspnet/core/tutorials/min-...
—
But if you want it to be mockable, concerns-separated and what have you, you’ll end up with at least 3-5 files. But it ain’t got nothing to do with either C# or .NET in general.
bossyTeacher|10 days ago
Programming against interfaces. That's what you are seeing. Makes unit testing easier.
skeletal88|9 hours ago
oblio|10 days ago