Aggregates, Entities & Value Objects | Modeling Rules of Thumb + Modeling Steps

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

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

  • @liordagan5098
    @liordagan5098 Год назад +22

    Thanks!

    • @amantinband
      @amantinband  Год назад +4

      OMG thank you so much! I really really appreciate it, I want you to know that your donation means the word to me. I love you, and I'll see you at dinner 😘

  • @amantinband
    @amantinband  Год назад +32

    Hey everyone! Just wanted to apologize in advance for the sound quality, had it misconfigured ☹. It should improve significantly next Monday 🤞

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

      I was about to send you a PM, but you hear it 😁

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

      Was gonna say, lol. For having such a nice mic it sure sounds like a potato.

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

      Yes this video deserves to be remade with improved audio bc the content is valuable

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

    The saviour is here. I completely get it. But we need a video for a full usage of most of the concepts. Well done teacher.

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

      No worries we’ll cover everything with practical examples

  • @silvertek
    @silvertek Год назад +9

    I cant wait to get back into the code! The last few videos have been great to step back and look at processes from a higher level. I'm hungry for more BuberDinner.

    • @amantinband
      @amantinband  Год назад +6

      Same here. Next week we are coming back to the code in full force 💪🏼

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

      Couldn't agree more... Last few videos have set the stage to deep dive into DDD 💪

  • @amantinband
    @amantinband  Год назад +6

    Curious to hear what you think!
    Do you have experience with modeling a domain? Do you have a different approach? Do you have different rules of thumb?
    Are you new to DDD? Do you have any questions regarding any of concepts?

  • @alexkovanev1425
    @alexkovanev1425 Год назад +4

    Great and simple explanation

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

    Once again an extremely good video. Didactically on world class level, even with bad sound. 😛

  • @MilanJovanovicTech
    @MilanJovanovicTech Год назад +9

    Excellent high level explanation of these concepts. When are you going to show us the code? 🔥

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

    Just today I was looking for information about aggregates, thanks! Can't wait next video

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

      Awesome to hear. Are you modeling a domain or onboarding to an existing project?

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

      @@amantinband I have a project at the university and I want to model it using DDD. I've looked at a lot of information about this, but your videos are awesome. Structured, useful information, and even with project examples

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

      Oh cool! Next Monday’s video is going to be a practical example I think you’ll find useful as well

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

    I've watched this video about 5 times now :)

  • @user-pe6cg1bv1q
    @user-pe6cg1bv1q Год назад +2

    Awesome stuff! Keep the DDD concepts coming :)

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

    Would love to see a video covering DDD with a framework like Spring Boot! I would be curious in particular as to how you would handle the separation of domain logic from persistence/framework code.

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

      I’m not familiar with spring boot, but the application we’re building out uses ASP.NET, and the principles we’ll use for separating logic between the layers should stay true regardless of the framework.
      There might be specific Java/persistence framework limitations, of course, but generally speaking, you should be able to apply what we’ll cover regardless of the framework 🙂

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

    ty for the video man!!! Wish u best of luck ❤

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

    Great video, curious to see how you combine DDD aggregates/entities/value objects with EF

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

      I struggled and learned a lot bending EF for DDD. There is a lot to talk about and practically no advanced examples available so you can expect some deep dives 👍🏼

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

      @@amantinband That is the same as my experience, and yes, there really is not much material out there for it. But EF core has come along way in recent years allowing for constructors, automatic mapping to encapsulated backing fields, 'OwnsOne/OwnsMany' etc. Before these features the only way was to have a separate data model from the domain model which adds massive overhead.

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

      Yeah exactly. It’s still not perfect IMO but definitely something we can work with!

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

      Vladimir Khorikov has a great course on Pluralsight about this topic.

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

      @@pilotboba thanks, will check that out!

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

    Could you do a Video with DDD Domain + Strategy Pattern please?

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

    Great video!
    I have one question:
    In repository pattern if i have for example an aggregate root Post and one entity Comment that can't exist without a post, the only repository that i should create is PostRepository? Does this repository handle all operations on comments too? Does it make sense to have a method that only retrieve comment informations or have at least the postName or postId without other post's informationt, or should i return always the aggregate? CommentRepository doesn't make sense right?
    Thanks in advance.

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

    Is there a full walkthrough tutorial on Buber Dinner? Would love to code along to understand the thought process better!

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

    Thank you for your videos,, I just wanted to share with you that your voice is distorted - also in your previous video was the same. You changed something?

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

      Yeah sorry about that, had it misconfigured. Next video should be fixed 🤞

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

    Good day sir, why is the Price an object? And when to decide if it should be an object or primitive type for properties? more power to you sir. thanks

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

    The aggregate modeling steps are misleading and/or confusing. Not all entities have to be defined as aggregates. Why merge different aggregates into one aggregate? Aggregates have their own invariants, so do entities, but using these terms interchangeably leads to confusion. What does merging them achieve? Did you mean merge different *entities* to form aggregates in order to enforce a new aggregate's invariants (e.g. move Reservation *entity* inside the Dinner entity to form a Dinner aggregate that enforces invariants that use both these entities)?

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

      Perhaps I could have been clearer on this topic. The steps I suggest in the video are:
      1. Treat each entity as if it is an Aggregate Root
      2. Merge Aggregates when there are constraints.
      Constraints can be:
      1. Invariants
      2. Eventual consistency cannot be tolerated
      Does that make sense?

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

    You're amazing.

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

    Awesome

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

    stupid question, if we only have private setters does that means that mappers and deserializers wont work directly?

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

    hi Amichai,
    I assume you made a bunch of videos where the clipping of your audio happend and you publish this videos now on a weekly basis. If this is the case, please ignore this comment. If not: you're still clipping :/

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

      Yeah, too bad I didn’t notice before. Sorry for that 🙏🏼 Next week the audio should improve

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

    What if i make DinnerAggregateRoot and DinnerReservationsAggregateRoot with same id or with relation by having DinnerReservationsId in DinnerAggregateRoot?

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

    learn a lot mate! woohooo

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

    When panning, try being less "instant". It's OK when you do it because you anticipate it, but for an audience it's jarring and unexpected and makes you loose your focus for a second while you readjust. It's worse when the image is highly zoomed in and the main content that you should be focused on is basically covering the full screen.

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

      That’s great feedback. Thanks Paul 🙏🏼

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

      @@amantinband Thanks for listening. Keep improving!

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

    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?

  • @David-rz4vc
    @David-rz4vc 7 месяцев назад

    can u have a one to many from one aggregates to another? or many to many

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

      Yes, but aggregates only reference other aggregates by ID

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

    You can reference other aggregates by a reference to the aggregate root, not just its ID (in the storage model you can store just the other aggregate's ID). I think most examples use IDs but technically, isn't holding a memory reference to the AR safe? Because you're just holding a reference to the transaction boundary of that AR, and you can only modify it through its public interface. Right?

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

      Can you? Yes. Is it recommended? No. Check out this article by vaughn vernon where he talks about this issue: www.dddcommunity.org/wp-content/uploads/files/pdf_articles/Vernon_2011_2.pdf

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

    Love the video but the sound is off

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

    I stand with Palstine

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

    The more I learn about DDD, the more it don't make much sense. Only theoretically it is good

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

    Ive never seen someone with such a nice mic have such horrible audio.