The Beginner's Guide to Clean Architecture

  Рет қаралды 19,325

Milan Jovanović

Milan Jovanović

Күн бұрын

☄️ Master the Modular Monolith Architecture: bit.ly/3SXlzSt
📌 Accelerate your Clean Architecture skills: bit.ly/3PupkOJ
🚀 Support me on Patreon to access the source code: / milanjovanovic
Clean Architecture is a domain-centric approach to organizing a software system to separate the concerns of the various components. Making the system easier to understand and maintain. This video will cover the fundamentals of Clean Architecture. I'll walk you through the individual layers and what we should place inside. And I'll wrap up with a suggestion on how you can learn more.
Check out my courses: bit.ly/3PupkOJ
Join my weekly .NET newsletter:
www.milanjovanovic.tech
Read my Blog here:
www.milanjovanovic.tech/blog
Chapters
0:00 What is Clean Architecture?
4:51 Clean Architecture - the layers
7:13 Do you need CQRS?
11:12 Want to master Clean Architecture?

Пікірлер: 63
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Master the Clean Architecture with PCA: bit.ly/3PupkOJ
@bondymagnomous3544
@bondymagnomous3544 7 күн бұрын
Finally a video about this topic that actually makes sense and not a 20 minutes long time-waste.
@MilanJovanovicTech
@MilanJovanovicTech 7 күн бұрын
Glad you enjoyed it 😁
@whatinthebloodyhell
@whatinthebloodyhell 2 ай бұрын
Thanks for this, Milan. Your content is always top-notch.
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Most welcome!
@mikeutube7888
@mikeutube7888 Ай бұрын
simply the best! simple and to the point. Thank you
@MilanJovanovicTech
@MilanJovanovicTech Ай бұрын
You're welcome!
@saddamhossaindotnet
@saddamhossaindotnet 2 ай бұрын
An excellent explanation about clean architecture. 🙂
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Glad you liked it!
@user-xm7sh3vw8o
@user-xm7sh3vw8o 2 ай бұрын
Looking forward to talking more about the modular monolithic architecture
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
More videos are already scheduled :)
@user-xm7sh3vw8o
@user-xm7sh3vw8o 2 ай бұрын
@@MilanJovanovicTech 🤩😙
@Paul-uo9sv
@Paul-uo9sv 2 ай бұрын
thanks, even for Senior devs, this is a great refresher
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
The fundamentals always apply
@ayanmitra2008
@ayanmitra2008 2 ай бұрын
Very good explanation
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Thanks a lot!
@andergarcia1115
@andergarcia1115 2 ай бұрын
I'm truly fascinated by this topic, thanks to your excellent explanation. I aspire to reach your level of knowledge in the future.
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Wow, thank you! Are you using Clean Architecture in your projects?
@andergarcia1115
@andergarcia1115 2 ай бұрын
@@MilanJovanovicTech With the help of your videos, I've definitely improved! However, I'm still a beginner, currently learning about ASP NET project types
@m5s10
@m5s10 2 ай бұрын
Very nice, like always. I'd agree with (at least one) comment that I saw asking for a mini app that implements all of this, because theory is nice, but seeing it actually in practice is even better. It doesn't have to have cqrs with mediatr or use a real db nor be a web app. It can just be a simple console app that fetches some data from in memory database. For example a library where you can list all the books or all the authors, you can add or remove books and/or authors. You can have some business rules like a book can't have more than 2 authors... I think it'd benefit the community a lot :)
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
I have at least three (that I can think of) series of implementing a CA project from scratch 😅 I can't fit that into one video, so I break it down into many separate lessons.
@DanielTila
@DanielTila 2 ай бұрын
I build a real SaaS platform using these patterns: kzbin.info/www/bejne/sKayqK2MjNWibqs Feel free to question everything is happening there
@m5s10
@m5s10 2 ай бұрын
@@MilanJovanovicTech Fair enough, my bad then. I watch a lot of your clips, but I don't keep tabs what I've seen on your channel, what on some others :)
@hadimazareei4536
@hadimazareei4536 2 ай бұрын
Thank you dear Milan. question about Models: 1- In [CommandHandlers] & [QueryHandlers] we have [Request Class] which is inherited from [IRequest]. 2- [Commands & Queries] class play a role like DTO which are used by handler class as input parameter. 3- [Queries] return a model and generally shall be different from [Domain] classes. If it is identical to [Domain] class, we create similar class (DTO) but don't expose domain class to upper layer. 4- So far, we have classes (Like Model) for commands (input) & queries (input) & DTO (output). 5- Item 1~4 can be used in API project and API project can be execute in server. 6- But, Client is a different project (WebApplication/WindowsForm/Android/…) and for sending/receiving data to/from API we need to have [Input Model] for command & query and get data in DTO format. Question: As mentioned above, is it suggested to define new command/query/DTO classes in different project (Not in Application/Infrastructure layers) to reference them to [Client] project so, we do not have to create extra and identical classes? Is it accepted? To clarify my previous question: Is it possible to create [Model] class (input and output) in separate class library and reference them to all other projects? In this way, [Command] class can inherit from [DTO+IRequest] together.
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
I end up just exposing a Request/Response object for the API layer. And then use Command/Query internally.
@stasnocap
@stasnocap 2 ай бұрын
Hi Milan! I have a question for you. Let's say I have clustered postgresql server (1 - write node, 3 - read only access nodes). What would be my best strategy to implement some sort of load balancing on my database? Well I can do some custom singleton service which can provide me always next connection string, but will it be ok? I believe there is a better solution somewhere. Btw, I am using EF core
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Isn't there a Postgres client library that can take care of that? 🤔
@CarrigansGuitarClub
@CarrigansGuitarClub 2 ай бұрын
Very good
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Thanks
@KemTech1
@KemTech1 Ай бұрын
Thank you for this video. I have bin trying to find out where the API should go in clean Architecture but no one was giving a straight forward answer has you did here. I just have one more thing for you to clear up. The UI(Angular,React,Blazor) should this also go in the Presentation layer?
@MilanJovanovicTech
@MilanJovanovicTech Ай бұрын
The client (UI) is usually a separate application - but in general, yes
@KemTech1
@KemTech1 Ай бұрын
@@MilanJovanovicTech thanks for clearing this up for me.
@user-xm7sh3vw8o
@user-xm7sh3vw8o 2 ай бұрын
love you 😙
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Thank you! :)
@ahmedh2482
@ahmedh2482 2 ай бұрын
as always.. you are awesome, I wrote the following message before seeing the end of your video, { Is there any chance that we can see you create a mini system of your choice to show for your follow how the systems build in real world, how we should implement design principles, design patterns in the real world, how we do that after analysing the idea, how we convert it to diagram maybe, or to tasks using agile.. scrum or kanban, how to manage git effectively, how to publish it to azure or aws.. I know it's alot, if you'd like to do that.. make it on a paid platform and I'm sure most of your followers will participate } I wrote that before seeing the end of your video 😂 I hope two things about your course, first it's starting from scratch or let us say for bignner not for the people how have master degree as you do here in KZbin, second it's convert the subjects that I mentioned above. thanks alot
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
- Check out some of the playlists I have. It's hours of videos building a CA project from scratch (Gatherly, eShop, Runtrackr) - I have another video touching on Azure deployment also (kzbin.info/www/bejne/h4GToZxtrcplatU) - For the course, take a look at the full Curriculum and some preview chapters.
@DanielTila
@DanielTila 2 ай бұрын
I build a real SaaS platform using these patterns: kzbin.info/www/bejne/sKayqK2MjNWibqs Feel free to question everything is happening there
@vietquang6603
@vietquang6603 2 ай бұрын
Hi Milan, I'm learning about EF core. But I don't know what is default loading in EF core, can you explain me about this?
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
I'd always refer to the docs if you have a basic EF question
@cancurva
@cancurva 2 ай бұрын
Thank you for providing valuable information in the .NET environment, Milan. I've been following you for some time now, but I'm in need of a mentor in Java. Do you happen to know anyone who could help?
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
No, sadly I don't follow any Java devs (they can't C#)
@Mig440
@Mig440 2 ай бұрын
I might be even more opinionated around what is allowed in the application layer, since I mostly like the functional core imperative shell version of clean architecture. That means that no side effect/ I/O is allowed when invoking methods outside the outer layers. Since I/O means unpredictability in the business logic this must be done carefully, since business logic should not depend on side effects while the outer shell can do so 👍
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
So your use case can't have any I/O?
@Mig440
@Mig440 2 ай бұрын
@@MilanJovanovicTech The use case may have I/O but it can only do so at the edges of the system. This means that the orchestration of the domain is not allowed to do I/O even through an interface, since that only masks the I/O. I/O introduces indeterminism and should therefore be avoided when making returning a result, which is all that business logic should ideally be doing. Any action you take as a consequence of that result is not the concern of the business logic but at a higher level of a use-case if you will. In this way you separate results from actions, so that the same logic can be used to take different actions depending on the context of the use-case.
@user-zp6nu5de3w
@user-zp6nu5de3w 2 ай бұрын
Thanks! Repository abstraction, in my opinion, should be at the application layer. It has nothing to do with the core business logic
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Your opinion vs mine 😁 At the end of the day, it's just an opinion. What matters is working software.
@vladimirmilovanovic
@vladimirmilovanovic 2 ай бұрын
Putting Dapper in Application layer breaks "Separation of concerns". Dapper should be in Infrastracture since it is part of external concerns.
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Conceptually, I agree. But that ends up leading to indirection from App to Infra that doesn't add much in value. What's your approach there?
@vladimirmilovanovic
@vladimirmilovanovic 2 ай бұрын
@@MilanJovanovicTech I prefer to keep database information out of the application. In this case, application layer knows db connection, type of db, db scheme. Pretty much everything.
@user-xm7sh3vw8o
@user-xm7sh3vw8o 2 ай бұрын
what is Orchestrates the Domain
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
= Tell it what to do
@MahmoudSaed98
@MahmoudSaed98 2 ай бұрын
Why didn't you use DTO in CA ?
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
We didn't need to
@dputra
@dputra 2 ай бұрын
Seems like clean architecture isn't very popular outside the OOP languages like C# and Java. I've been transitioning to python the last few months and I can't seem to find a good clean architecture examples. Maybe because in python they don't really abstract much of the implementation details, unlike in C# dan Java?
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
That could be the reason, yeah 🤔
@codeme8016
@codeme8016 2 ай бұрын
Please no offense, The issue with all your CA videos (at least for me) is that in all of them you either don't show an actual project or even when you do, you never show the folders/files structures or hierarchies. I've watched many of your videos yet couldn't figure out how to setup even a basic CA project. Suggestion: 1- Create a new .NET project 2- Create the needed folders 3- Place each file to its relative folder. e.g. Controller, Repo, Entity/Model, Dto, Db, etc. 4- Explain how they are connected and related to each other. If I would rank C# KZbin videos based on being practical and helpful: #1 kudvenkat (the best) #2 IAmTimCorey #2 You #3 Nick Chapsas (the worst) I hope it helps you improve your contents. To be honest some of your videos are just great I have to add that. Best regards.
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
Look at it from a creator's perspective. There are a few issues I'm faced with. Let's say I want my videos to be 15-20 minutes long. This is long enough to pack some helpful info inside but not so long that it becomes boring. And there lies the problem. So, I must sacrifice something to fit the format I want to produce. Most of the time, I end up assuming the viewer has some prior experience with a certain topic or is a more experienced developer. With that in mind, I assume the viewer should be able to follow most of the videos and take away the key points I want to convey. Sometimes, I succeed, and sometimes, I don't. I'm not perfect. My second point is about having time to produce good content. I sacrificed the quality in the past few weeks (and a few incoming weeks) to have time to work on my new Modular Monolith course. Which is almost ready for release. This means I'll have more time to focus on creating quality content, and I'm excited about it. :)
@codeme8016
@codeme8016 2 ай бұрын
@@MilanJovanovicTech That's beautiful. I absolutely admire you for creating these contents along with your own crouse works at the same time. Your last paragraph is actually very motivating ❤️. I see you have many CA videos. Maybe if the first videos were a bit more fundamental then building up from there in the next short videos would help us a bit more. Most people like me who look for a tutorial on KZbin usually don't know much about the particular subject, otherwise, we'd go for Stackoverflow, Gemini, ChatGPT etc. Every time you upload a CA video I open it hoping this one is gonna show me how to do it 😂 and I've been failing over and over so far. Thanks for sharing your viewpoint and situation. Good luck with your new courses. 🍻
@RaZziaN1
@RaZziaN1 2 ай бұрын
I've followed all your videos about hexagonal, clean architecture, DDD, layered and adapters and ports. And at this point i have no idea what it supposed to be, same on linkedin. You are mixing and overconfusing tons of stuff or im not experienced enough which is which at this point.
@MilanJovanovicTech
@MilanJovanovicTech 2 ай бұрын
I never talked about hexagonal, though. Can you explain which part is causing you confusion?
@ronnythedev
@ronnythedev 2 ай бұрын
I disagree. I think Milan has put together a very clear architecture. Every layer is focused only on one area of the system. E.g: Domain does only one thing and is loosely coupled from other layers. I've been in this for over 20 years, and I've seen many attempts to put together a good architecture. Milan's is one of the best, mixing structure with pragmatism and following all SOLID principles.
@codeme8016
@codeme8016 2 ай бұрын
@@ronnythedev The issue seems to be "You're being in it for over 20 years". A different standpoint.
How to design great Aggregate Roots in Domain-Driven Design
11:30
Milan Jovanović
Рет қаралды 10 М.
What is an API Explained in 1 minute #shorts
0:46
Learn with Whiteboard
Рет қаралды 181 М.
Sigma Girl Past #funny #sigma #viral
00:20
CRAZY GREAPA
Рет қаралды 30 МЛН
ROCK PAPER SCISSOR! (55 MLN SUBS!) feat @PANDAGIRLOFFICIAL #shorts
00:31
Haha😂 Power💪 #trending #funny #viral #shorts
00:18
Reaction Station TV
Рет қаралды 15 МЛН
3M❤️ #thankyou #shorts
00:16
ウエスP -Mr Uekusa- Wes-P
Рет қаралды 11 МЛН
How to Implement the CQRS Pattern in Clean Architecture (from scratch)
17:36
Top 5 Most Used Architecture Patterns
5:53
ByteByteGo
Рет қаралды 225 М.
Getting Started with Modular Monoliths in .NET
12:37
Milan Jovanović
Рет қаралды 20 М.
Mejora tu código aplicando Clean Architecture
10:37
CodelyTV - Redescubre la programación
Рет қаралды 76 М.
What are Microservices?
9:06
Telusko
Рет қаралды 130 М.
Clean Architecture in Flutter - All You Need to Know!
3:57
Flutter Guys
Рет қаралды 34 М.
Secret Wireless charger 😱 #shorts
0:28
Mr DegrEE
Рет қаралды 2,5 МЛН
GamePad İle Bisiklet Yönetmek #shorts
0:26
Osman Kabadayı
Рет қаралды 364 М.
Что не так с яблоком Apple? #apple #macbook
0:38
Не шарю!
Рет қаралды 438 М.