DDD Building Blocks

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 50

  • @WaxShackleton
    @WaxShackleton Год назад +53

    This is the clearest explanation of DDD I've ever come across. Thanks a lot!

  • @Valem0r
    @Valem0r 11 месяцев назад +6

    Finally a clear and to the point explanation about DDD with concrete example. I learned a lot more under 5 mins than i did watching those vague abstract one hour conferences. Thank you for this!

  • @rezamonang
    @rezamonang 10 месяцев назад +6

    This is the best video explaining ddd terminology i've ever watcher. Thank you!

  • @HungLe-jp6ct
    @HungLe-jp6ct 4 месяца назад +1

    I can't believe how clearly this video explains everything. It's the best comprehensive explanation I've had in a while.

  • @3mloooki
    @3mloooki Год назад +3

    This is the best and easiest explanation of DDD !!!! Thanks a lot.

  • @tamasszebenyi5942
    @tamasszebenyi5942 Год назад +5

    This channel clearly deserves way more subscribers. Thank you and keep on the good work!

  • @RiKeMer96
    @RiKeMer96 Месяц назад

    Thank you so much for the simple easy to understand explanation of DDD😭

  • @vasilikimanoli9285
    @vasilikimanoli9285 Год назад

    The clearest and simplest explanation I have come across! Thanks!

  • @BaM6IIuP
    @BaM6IIuP 6 месяцев назад

    an undervalued video with amazing explanation of so sophisticated topic.
    мое почтение

  • @trox085
    @trox085 Год назад

    By far the best description of DDD.

  • @janmeppe
    @janmeppe Год назад +2

    These videos are a lifesaver! Keep making them!

  • @dartneer
    @dartneer Год назад +5

    Simply amazing.. thanks for this. I wish these came once every other day :). They are really that good.👏💪

  • @jan5310
    @jan5310 10 месяцев назад

    Holy crap… this was a great explanation. Really good job! Love the analogies and simple examples with the nice animations and drawings! Keep it up!

  • @Waathiqful
    @Waathiqful 11 месяцев назад

    This is a GREAT explanation of DDD, and tbh one of the best I've seen. I've subscribed to your channel, that's how much I like it!!!

  • @Sleerk
    @Sleerk Год назад +1

    Wow, it's not even 8 months from the last video. Nice :)

  • @alan-
    @alan- Год назад +2

    That was so easy and quick!

  • @IcaroAlvarez
    @IcaroAlvarez 3 месяца назад

    Beauuutiful explanations! Thanks a lot

  • @Mempler
    @Mempler 5 месяцев назад

    This is also somewhat i figured. Thanks for clarifying everything 👌

  • @alexanderaugust229
    @alexanderaugust229 3 месяца назад

    great explanation! Thank you

  • @MarcoLenzo
    @MarcoLenzo Год назад +1

    Really well explained. Well done!

  • @khajalieubarrie5088
    @khajalieubarrie5088 Год назад

    Please continue this domain driven design series

  • @gabrielverle9469
    @gabrielverle9469 Год назад

    Please, continue doing this amazing content

  • @mateuszkaleta1495
    @mateuszkaleta1495 Год назад +1

    Nice video ! I'm sure that authorization code flow or some another security flows will be very helpful :)

  • @iraklidavitaia
    @iraklidavitaia Год назад +1

    Great content! Keep going👍

  • @adrianvdhouten
    @adrianvdhouten Год назад

    LOVE THIS!!! Please make more videos

  • @rebinmod
    @rebinmod 11 месяцев назад

    brilliant content

  • @SoroushOracle
    @SoroushOracle 3 месяца назад

    Very Good

  • @EljoPro
    @EljoPro 7 месяцев назад

    insane explanation thanks alot

  • @Danielo515
    @Danielo515 15 дней назад

    I love how the purple 🟣 is keep here in the car aggregate 😂

  • @windsorek
    @windsorek 10 месяцев назад

    Can't i perform atomic operation 'steal wheels' on car aggregate and save state? Seems like i could which would lead to the same problem which it supposedly guards against

    • @drawingboxes
      @drawingboxes  8 месяцев назад +1

      If that's a valid operation in your domain then, sure, build it into the aggregate! But now I'm worried about what domain you're modelling.... 😅

  • @R_eapy
    @R_eapy Год назад

    Nice new upload, please keep it up

  • @dev.anupsarkar
    @dev.anupsarkar Год назад +1

    well explained

  • @asierpaz4866
    @asierpaz4866 8 месяцев назад

    It is very well explained, but I'm missing domain services. Quoting Evans: "Sometimes, it just isn’t a thing.".

    • @drawingboxes
      @drawingboxes  6 месяцев назад

      Thanks! Aaaah yes - I'll add that to my list of potential future videos :)

  • @AntonZap
    @AntonZap 9 месяцев назад

    thank you very much.

  • @botyironcastle
    @botyironcastle 6 месяцев назад

    what if you have huge data like 100000000comments in Post object. I don't think you can init a domain object with that much... looks useless to me when dealing with large chunks of data. Thoughts?

    • @drawingboxes
      @drawingboxes  6 месяцев назад +1

      That's a great example. There's a bit of an art to defining the aggregate boundary, and I think yes you want to try keep them smaller than that.
      Does your domain need the full comments list to be consistent? If two users load the page, then both leave a comment, should the second comment fail with some concurrency error? Or just allow both comments? Perhaps the boundary is around the comment, not the post.
      But if you do, your implementation doesn't have to load every comment into memory to know if something has changed. Checking a LastCommentDate or LastUpdateDate could also work.

  • @nasamind
    @nasamind Год назад

    Which book is good for DDD, I want to be good in DDD suggest me some good source

  • @darwinmanalo5436
    @darwinmanalo5436 Год назад

    Keep it up.

  • @SweetTorment72
    @SweetTorment72 4 месяца назад

    Isn't Value Object a bit of an oxymoron, since objects usually have identity in OO? My brain wants to call them Value Types. They behave more like value types such as int and enum, and I also think they are easier to implement as structs rather than classes in C#.

    • @agostiik5712
      @agostiik5712 4 месяца назад +1

      One reason to call them value OBJECT instead of TYPE, is that it is like an attribute of an entity. These attributes can also be simple or complex (=> object) but the important thing as the video also says is that it has to be immutable. For sure, simple attributes could be handled in structs or enums but the more complex it gets, the easier it is to implement it in a class. And in OO an object can literally be anything, either simple or complex. It is not a usual thing to have id in an object, thats more like an entity.

  • @MrNishantarora
    @MrNishantarora 11 месяцев назад

    perfect

  • @medilies
    @medilies Год назад

    The aggregate looks like Facade for me

    • @drawingboxes
      @drawingboxes  Год назад +1

      This is great insight. They are similar. The GoF facade tries to hide away all the inner objects though, whereas an aggregate root is just the node that we use to access the aggregate. You could design it so you load the full Car aggregate then access one of its Wheel objects to pump up a tyre. We just can’t load that Wheel directly from a repository using just its WheelId

  • @clashclan4739
    @clashclan4739 Год назад +3

    In education contents pls avoid background musics. Its very annoying and disturbing to concentrate

    • @alan-
      @alan- Год назад +5

      I don't find that.

    • @R_eapy
      @R_eapy Год назад +1

      For me it's the opposite