You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would suggest not to use layered architecture inside clean architecture. Take vertical-slicing approach and build your solution around functionalities. One use-case = one functionality (mostly) and put things together that belong together (high cohesion). Don't group things by type (this is what layered architecture does). Otherwise you're bringing all the negative things from layered architecture into it so at the end there is no benefit, just more complexity.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I would suggest not to use layered architecture inside clean architecture. Take vertical-slicing approach and build your solution around functionalities. One use-case = one functionality (mostly) and put things together that belong together (high cohesion). Don't group things by type (this is what layered architecture does). Otherwise you're bringing all the negative things from layered architecture into it so at the end there is no benefit, just more complexity.
Beta Was this translation helpful? Give feedback.
All reactions