This is the second video I have watched on Clean Architecture which is just a demo of the template.
@oussamabenyakhlef6 ай бұрын
hello sir i wanna ask you about domain layer, can i have multiple separate domain layers in my architecture ?
@ZachPainter-sw9ui Жыл бұрын
I love this architecture and I love how mediatr makes the app much more maintainable, scalable, testable, modular etc.. I have used this extensively at my previous place of employment.. People here at my current place are much more skeptical.. How do I convince people to use this?
@juanmarquezr2 жыл бұрын
how to generate ca-sln for Net 6? today "Nov 2022 my date" is generating for NET 7 which is not LTS
@krccmsitp2884 Жыл бұрын
Change the TargetFramework in the csproj files to net6.0
@fieryscorpion2 жыл бұрын
Clean Architecture is just way too much complex. It’s time to ditch it. Vertical slice architecture runs circles around it and it’s much easier to maintain long term.
@PaulSebastianM2 жыл бұрын
F*** yeah! Finally, I see people agreeing on this. Now, to be serios, you can take some parts of Clean and implement it in VSA. I mean you can layer a slice like Clean does it, there's nothing wrong with that, but you don't need the huge abstractions from CA in a simple small VSA slice because it's all encapsulated in the slice that you don't need to worry about details spilling out or cross-slice-dependencies, and in fact you can do a more functional approach because it becomes much easier (smaller scope). IMO, functional programming is the future.