The Beginner's Guide to Clean Architecture

แชร์
ฝัง

ความคิดเห็น • 70

  • @MilanJovanovicTech
    @MilanJovanovicTech  5 หลายเดือนก่อน +6

    Want to master Clean Architecture? Go here: bit.ly/3PupkOJ
    Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt

  • @sunzhang-d9v
    @sunzhang-d9v 5 หลายเดือนก่อน +2

    Looking forward to talking more about the modular monolithic architecture

    • @MilanJovanovicTech
      @MilanJovanovicTech  5 หลายเดือนก่อน

      More videos are already scheduled :)

    • @sunzhang-d9v
      @sunzhang-d9v 5 หลายเดือนก่อน

      @@MilanJovanovicTech 🤩😙

  • @codeme8016
    @codeme8016 5 หลายเดือนก่อน +7

    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# TH-cam 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  5 หลายเดือนก่อน

      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 5 หลายเดือนก่อน

      @@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 TH-cam 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. 🍻

  • @ЮраКосенко-е9е
    @ЮраКосенко-е9е 5 หลายเดือนก่อน

    Thanks! Repository abstraction, in my opinion, should be at the application layer. It has nothing to do with the core business logic

    • @MilanJovanovicTech
      @MilanJovanovicTech  5 หลายเดือนก่อน

      Your opinion vs mine 😁 At the end of the day, it's just an opinion. What matters is working software.

    • @kennethcanet1633
      @kennethcanet1633 2 หลายเดือนก่อน

      @@MilanJovanovicTech Hi, just curios why did you put the repository abstraction in the domain layer?

  • @adriencbl
    @adriencbl หลายเดือนก่อน +1

    Amazing content, thank you for this playlist about Clean Architecture, DDD and related topic

  • @sunzhang-d9v
    @sunzhang-d9v 5 หลายเดือนก่อน

    what is Orchestrates the Domain

  • @AhadKhan-i6n
    @AhadKhan-i6n 4 วันที่ผ่านมา

    Could you make any quick step by step guide for mid level developer for better understand this idea without CQS or with repository unit of work and services DP..

  • @hadimazareei4536
    @hadimazareei4536 5 หลายเดือนก่อน +1

    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  5 หลายเดือนก่อน +1

      I end up just exposing a Request/Response object for the API layer. And then use Command/Query internally.

  • @akashrokade12
    @akashrokade12 7 วันที่ผ่านมา

    Hi Milan, i watch your content from a long time and also like it. I have a request can you try to keep content as beginner friendly so that if we share videos to someone, even if he has no context he can learn it easily and quickly

  • @Paul-uo9sv
    @Paul-uo9sv 5 หลายเดือนก่อน +2

    thanks, even for Senior devs, this is a great refresher

  • @bondymagnomous3544
    @bondymagnomous3544 3 หลายเดือนก่อน +1

    Finally a video about this topic that actually makes sense and not a 20 minutes long time-waste.

  • @m5s10
    @m5s10 5 หลายเดือนก่อน +1

    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  5 หลายเดือนก่อน +1

      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 5 หลายเดือนก่อน

      I build a real SaaS platform using these patterns: th-cam.com/video/zuOwzVWpo8I/w-d-xo.html Feel free to question everything is happening there

    • @m5s10
      @m5s10 5 หลายเดือนก่อน

      @@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 :)

  • @ahmedh2482
    @ahmedh2482 5 หลายเดือนก่อน +1

    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 TH-cam,
    second it's convert the subjects that I mentioned above.
    thanks alot

    • @MilanJovanovicTech
      @MilanJovanovicTech  5 หลายเดือนก่อน

      - 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 (th-cam.com/video/QP0pi7xe24s/w-d-xo.html)
      - For the course, take a look at the full Curriculum and some preview chapters.

    • @DanielTila
      @DanielTila 5 หลายเดือนก่อน

      I build a real SaaS platform using these patterns: th-cam.com/video/zuOwzVWpo8I/w-d-xo.html Feel free to question everything is happening there

  • @whatinthebloodyhell
    @whatinthebloodyhell 5 หลายเดือนก่อน +1

    Thanks for this, Milan. Your content is always top-notch.

  • @saddamhossaindotnet
    @saddamhossaindotnet 5 หลายเดือนก่อน +1

    An excellent explanation about clean architecture. 🙂

  • @mikeutube7888
    @mikeutube7888 4 หลายเดือนก่อน +1

    simply the best! simple and to the point. Thank you

  • @RaZziaN1
    @RaZziaN1 5 หลายเดือนก่อน +6

    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  5 หลายเดือนก่อน

      I never talked about hexagonal, though. Can you explain which part is causing you confusion?

    • @ronnythedev
      @ronnythedev 5 หลายเดือนก่อน +7

      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 5 หลายเดือนก่อน +1

      @@ronnythedev The issue seems to be "You're being in it for over 20 years". A different standpoint.

  • @dputra
    @dputra 4 หลายเดือนก่อน

    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?

  • @stasnocap
    @stasnocap 5 หลายเดือนก่อน

    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  5 หลายเดือนก่อน +1

      Isn't there a Postgres client library that can take care of that? 🤔

  • @cancurva
    @cancurva 5 หลายเดือนก่อน

    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  5 หลายเดือนก่อน

      No, sadly I don't follow any Java devs (they can't C#)

  • @vietquang6603
    @vietquang6603 5 หลายเดือนก่อน

    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  5 หลายเดือนก่อน

      I'd always refer to the docs if you have a basic EF question

  • @Mig440
    @Mig440 5 หลายเดือนก่อน

    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  5 หลายเดือนก่อน

      So your use case can't have any I/O?

    • @Mig440
      @Mig440 5 หลายเดือนก่อน +1

      @@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.

  • @ianisoprian8187
    @ianisoprian8187 หลายเดือนก่อน

    Very good examples and great advice for good practices! You are a great teacher

  • @andergarcia1115
    @andergarcia1115 5 หลายเดือนก่อน +3

    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  5 หลายเดือนก่อน +1

      Wow, thank you! Are you using Clean Architecture in your projects?

    • @andergarcia1115
      @andergarcia1115 5 หลายเดือนก่อน

      @@MilanJovanovicTech With the help of your videos, I've definitely improved! However, I'm still a beginner, currently learning about ASP NET project types

  • @KemTech1
    @KemTech1 4 หลายเดือนก่อน

    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  4 หลายเดือนก่อน

      The client (UI) is usually a separate application - but in general, yes

    • @KemTech1
      @KemTech1 4 หลายเดือนก่อน

      @@MilanJovanovicTech thanks for clearing this up for me.

  • @CarrigansGuitarClub
    @CarrigansGuitarClub 5 หลายเดือนก่อน

    Very good

  • @ayanmitra2008
    @ayanmitra2008 4 หลายเดือนก่อน

    Very good explanation

  • @sunzhang-d9v
    @sunzhang-d9v 5 หลายเดือนก่อน

    love you 😙

  • @vladimirmilovanovic
    @vladimirmilovanovic 5 หลายเดือนก่อน +1

    Putting Dapper in Application layer breaks "Separation of concerns". Dapper should be in Infrastracture since it is part of external concerns.

    • @MilanJovanovicTech
      @MilanJovanovicTech  5 หลายเดือนก่อน +1

      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 5 หลายเดือนก่อน +1

      @@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.