Domain Layer Structure & Skeleton | Clean Architecture & DDD From Scratch Tutorial | Part 13

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ต.ค. 2022
  • Today we'll implement the domain layer skeleton in our Buber Dinner application!
    Domain models markdown files: gist.github.com/amantinband/4...
    Make my day on Patreon & get the source code: / amantinband
    Link to the full playlist: • ASP.NET 6 REST API Fol...
    Connect with me on 'em socials:
    Twitter: / amantinband
    LinkedIn: / amantinband
    GitHub: github.com/amantinband
    #dotnet #csharp #ddd
  • วิทยาศาสตร์และเทคโนโลยี

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

  • @TurgayTuerk
    @TurgayTuerk ปีที่แล้ว +70

    I can't even imagine how much effort it takes to prepare a series of tutorials on this topic. Thank you so much! looking forward for the next one!

    • @amantinband
      @amantinband  ปีที่แล้ว +20

      Thanks, Turgay. My wife would agree it's way too much effort 😅

  • @avecesar
    @avecesar ปีที่แล้ว +1

    I can´t thank you enough... I've learned a lot of concepts, but the most valuable lesson has been the fact that not every domain fit into this practisess; complexity is a choise, some times.

  • @ibrahimkoz1983
    @ibrahimkoz1983 ปีที่แล้ว +22

    I cannot explain how much I appreciate your work. This is such an incredibly useful and decent series.

    • @amantinband
      @amantinband  ปีที่แล้ว

      Thanks, Ibrahim 🙏🏼

  • @andreaskonomis3
    @andreaskonomis3 ปีที่แล้ว +1

    Had read the blue book till a point and the argument regarding the difference an organized namespace/folder structure makes stuck with me, but hadn't come across from anyone else such an example before. Kudos! Keep rocking!

  • @mdsahidulhussain8501
    @mdsahidulhussain8501 ปีที่แล้ว +5

    I have been following this series from day 1. Its very informative. I really appreciate your work. Thanks for sharing your knowledge.

  • @DanielOliveira-hd9uc
    @DanielOliveira-hd9uc ปีที่แล้ว +2

    I've never seen these approaches before, it's super clean, thanks for sharing with us!

  • @gtejeda
    @gtejeda ปีที่แล้ว

    Excellent explanation and series so far, good job!

  • @robertogonzalorodriguez845
    @robertogonzalorodriguez845 ปีที่แล้ว

    Great video, Amichai! Looking forward to the persistence implementation. Thank you very much.

    • @amantinband
      @amantinband  ปีที่แล้ว

      Thanks, Roberto! Me too 🤙🏼

  • @Emmap11
    @Emmap11 ปีที่แล้ว

    This is a GREAT JOB!!! I love this series, was fantastic thank you!

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

    Awesomely great video, well structed and presented. Thanks a lot!

  • @gui.ferreira
    @gui.ferreira ปีที่แล้ว +6

    It's amazing how the folder structure can change the way how you approach all other decisions. 👏👏👏

  • @Yarkendar
    @Yarkendar ปีที่แล้ว

    Best guides about DDD! Thanks, man

  • @tomheijtink8688
    @tomheijtink8688 ปีที่แล้ว +4

    We have been doing something similar. One difference is that we put all the aggregates in a folder called Aggregates. So the common folder doesn't get mixed up with the other aggregate folders.
    It works well, and have so not noticed any real downsides to this approach. One interesting idea is to use the new file nesting capabilities in visual studio. This could in theory do away with many folders. And you would be able to nest a value object for a specific entity.

  • @amantinband
    @amantinband  ปีที่แล้ว +6

    Curious to hear what you thought about the implementation part of this video! Was it too fast? Too slow? Would you have preferred I hadn't skipped writing out the aggregate parts we already covered? Also, would you have preferred I actually wrote out the entire domain?

    • @TurgayTuerk
      @TurgayTuerk ปีที่แล้ว

      The implementation part as well as the entire tutorial was very explanatory, even if I used the pause function in few places :) Thanks again for your effort! Regarding the "functional" based folder structure; wouldn't the best location for the Error.User class be inside the "User" folder, or does Errors generally belong to the common folder?

    • @jendrikoltmanns1017
      @jendrikoltmanns1017 ปีที่แล้ว

      Really enjoyed it. Speed was suitable, but i already was in touch with those concepts, so maybe for newbies could be a bit to fast (Since its a video, you can easily stop and manipulate speed ;) ).
      Implementing the whole domain is not needed, cause concept stays the same right. For me different approaches are more interesting. As example i would always go for the functional cohesion, instead of categorically. Just curious why you implemented additional value objects for the IDs, cause new creation of guid could be handled in base class.
      Also this post from Vaughn Vernon was very exciting, to decouple entities from the ORM with State-Objects. kalele.io/modeling-aggregates-with-ddd-and-entity-framework/
      Best wishes, thanks :)

    • @seanvogel8067
      @seanvogel8067 ปีที่แล้ว +1

      It seems a little fast, but skipping the writing of similar aggregate parts makes sense.

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

    great video on a complex subject - thanks!

  • @johnroca338
    @johnroca338 ปีที่แล้ว

    Great Series! Thank you!

  • @Mauriciog87
    @Mauriciog87 ปีที่แล้ว

    Can't wait for the next one!

  • @amitsinghrawat4760
    @amitsinghrawat4760 ปีที่แล้ว

    You're doing great, keep it up.

  • @m_camper
    @m_camper ปีที่แล้ว

    Great videos, thank you!

  • @ahmad_9877
    @ahmad_9877 11 หลายเดือนก่อน +2

    I have some question about your approach:
    - Why are you using value objects for ids? In most cases ids have little logic and it seems to be a redundant abstraction. We can use it wherever we have some logic more than simple comparison, and I don't get why you use it as a global pattern.
    - Why you use static factory method inside the class, instead of constructors? Constructors in this example are pretty simple, and we usually use factory methods when creating an object is complicated. Using factory method everywhere also seems redundant to me. Also I prefer factory classes rather than factory methods in such case, since this static methods nested inside the class will bloat the class the same as a big constructor will do (actually I don't see any differences between constructors and static factory methods at all). Factory methods in my opinion are suitable when used as a member method of a container class, a super class, etc.
    - Why all properties just have getters? How are you going to set them? What do you think about public setters on properties?

  • @n0pee349
    @n0pee349 ปีที่แล้ว +1

    I LOVE this series so far. Thanks for your effort in making it so smoothe and enjoable.
    Is there any chance that (in future) you could add some kind of keystrokes monitoring to your films and vs code shortcuts settings (your workflow is amazing)?

    • @amantinband
      @amantinband  ปีที่แล้ว +1

      Thanks! I tried in a draft video. I felt it added too much noise to the screen 🤷🏼‍♂️

  • @hugoribeiro1317
    @hugoribeiro1317 ปีที่แล้ว +2

    What a nice series you're creating, Amichai! Congrats for the great work. One thing I was wondering is if u re gonna make something to not repeat the create/update props in each needed class.

    • @amantinband
      @amantinband  ปีที่แล้ว

      Thanks, Hugo. No, I don't have a technique for that. Do you have something in mind?

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

    I loved it. Thank you!

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

      🫶🏼

  • @lilililliilil
    @lilililliilil ปีที่แล้ว

    very goooood!!!!❤ ty for the content

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

    Great coding without a single look on a keyboard!)

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

    Awesome! Thank you

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

    i'm light years behind this

  • @MrVipulLal
    @MrVipulLal ปีที่แล้ว

    Great explanation

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

    Awesome playlist! are you planning on making any more videos for this series?

  • @user-rk4sw8mf3f
    @user-rk4sw8mf3f ปีที่แล้ว +1

    Hi Amichai, Great Video really like the series, I think based on the gist in the description that maybe you should have an common entity with created/updated DateTime properties that inherit from the base entity class and then we can have less duplication of code to have it on each Entity we creating

    • @amantinband
      @amantinband  ปีที่แล้ว

      Thanks שי. We'll have an IAuditableEntity interface that all the auditable entities will implement in the future. When we reach the persistence layer, we'll cover how to populate these properties.

  • @pdevito
    @pdevito ปีที่แล้ว +2

    Always fun seeing how people organize this. Definitely agreed on colocation!
    Curious to see how the value objects will work for the foreign keys and what interactions with those and their entities will look like. Seems like you might need some interesting helpers on the value objects to facilitate interactions, but maybe there’s some other patterns to help here.
    Regardless, fun watch as always. Thanks for sharing 🍻

    • @Meryovi
      @Meryovi ปีที่แล้ว +1

      I've been wondering this myself, and in case Amichai uses EF Core if everything he's done so far will play nice. Looking forward to this.

    • @amantinband
      @amantinband  ปีที่แล้ว +3

      Yup, we'll deal with this when we cover entity type configurations. Basically, we'll use the HasConversion method for this.

    • @pdevito
      @pdevito ปีที่แล้ว

      @@amantinband that’s any value object though. Dealing with the needs around a key are a separate issue I think with different needs. Doing things like an expanded GET list, managing child entities, etc would be interesting to see

    • @serb1146
      @serb1146 ปีที่แล้ว

      Yeah, I wonder, why we create one more abstraction with ValueObject, if this suports "by default" on top of programming language itself. Ex: System.Guid (comparison, generating an so on)

  • @broodja5384
    @broodja5384 ปีที่แล้ว

    Thank you so much, Amichai, great work, keep it up. I personally enjoy you voice pitch and pace, make it much more enjoyable to listen complex explanitions.
    Hope this time I can FINALLY make it straight and logical in my head.
    P.S.: Can you say what's that suggetion tool at 8:30?

    • @amantinband
      @amantinband  ปีที่แล้ว

      Thanks! It’s GitHub Co-Pilot

  • @suhutwadiyo
    @suhutwadiyo ปีที่แล้ว

    Amazing 👍

  • @gzoechi
    @gzoechi ปีที่แล้ว

    Great stuff👍
    I'm wondering where the other parts are. This is part 13 but the playlist only contains 7 videos 🤔

  • @vagnerpadilha3485
    @vagnerpadilha3485 ปีที่แล้ว +2

    amazing series. One question, for the sake of garbage collector/memory allocation, shouldn't Ids be structures instead of classes? thank you for all this content

  • @MetoGamez
    @MetoGamez ปีที่แล้ว +1

    This video could not have been better timed, have been learning DDD for the past month or so for work and this cleared up a lot for me, Thank you!
    I have 1 question though, in your aggregates you define private read only list of value objects pointing to ids of other aggregates. How would you map this to a database? I'm using EF doing code first with FluentAPI and this is the only thing I'm struggling with

  • @HARDcoreNOOB321
    @HARDcoreNOOB321 ปีที่แล้ว

    Hey man, great video.
    Is immutable list better choice in this case then read only list (12:15)?

  • @ismaelperezmesa524
    @ismaelperezmesa524 ปีที่แล้ว

    @Amichai Thank you again for all your effort, every lesson is greater. I would like to ask you something that is really urgent to me: How can I dockerize a project like this we are studying with you for deploying as a container on a cloud? Please, Can you or another people here, share the way or an example to achieve it? Thanks a lot, you’re amazing!

  • @reindeerbreeder11
    @reindeerbreeder11 ปีที่แล้ว

    Thank you for the video! One question: what about integers? I mean if I want to use int as ID, how I should generate it in “CreateUniq”?

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

    I'm not sure I understand how the AverageRating property on a Host and on a Dinner is kept up to date in this example.
    We said we want a change to an aggregate root not to affect other roots it is related to, but in this case the AverageRating depends on the content of the reviews.
    Would we need to subscribe to some MenuReviewCreated event to update the rating of the dinner and the host separately?Or is there another approach?

  • @mabdullahsari
    @mabdullahsari ปีที่แล้ว +6

    Directly instantiating a Guid inside the VO couples the Domain to the Infrastructure as it relies on the system's random device making it no longer "core" code. Do you have plans to move this to a Repository once they exist e.g. a NextIdentity method?

    • @markyavorskiy5335
      @markyavorskiy5335 ปีที่แล้ว

      Yes, I had almost the same question about when it is the right time to generate an id for a entity/agragate root. And how the corresponding entity/agragate should live before this id will be generated? Suppose, it has to be a separate object. Thant YOU!

    • @amantinband
      @amantinband  ปีที่แล้ว +2

      Great comment. It's the topic of a future video 🫣

  • @michaelfrostholm100
    @michaelfrostholm100 ปีที่แล้ว

    Super cool series, I have watched all 13 videos now, and i learned a lot from these. I am curious about the plan of upcoming videos ? Do you have a plan ? Fx Logging, Persistence, Events, Versioning ?

    • @amantinband
      @amantinband  ปีที่แล้ว

      Thanks Michael! Yes, I’m planning to cover all these topics in the future 🤙🏼

  • @Pachwara
    @Pachwara ปีที่แล้ว

    Amichai, thanks a lot for your videos
    We also need a tutorial how to connect all of these things to the database. What framework to use? Entity framework has a lot of constraints (on sealed classes, private members etc.)
    Thanks

  • @DrHeinzDoofenshmirtz
    @DrHeinzDoofenshmirtz ปีที่แล้ว

    Hi Amichai! Awesome videos. They have really been missing everywhere on the internet. Definitely the best ones on the subject.
    One question: Is it really good to force passing an Id in the constructor? Normally the database would decide the Id and set it. Can you tell me why this is a good approach? Or are you planning on rewriting it later when you add the persistence layer and EF?

    • @amantinband
      @amantinband  ปีที่แล้ว

      Hey Matthias! Great question. Depends on your approach. Some prefer having the repository/persistence generate the id, some prefer the something similar to what I presented. We’ll cover both approaches in the series 🤙🏼

  • @captianawesome6753
    @captianawesome6753 ปีที่แล้ว +3

    Don't you have multiple domains inside one project? Guests, menu, dinner etc? When you seperate each (sub) domain the initial structure isn't that bad?

    • @amantinband
      @amantinband  ปีที่แล้ว +2

      Domain/Subdomain are logical boundaries. They do not necessarily have a 1:1 mapping to a project, system, or microservice.
      We would probably split this differently if we were designing a large system. But when starting out, it's definitely possible to start with a monolith and grow as needed. Does that make sense?

  • @HadrielWonda
    @HadrielWonda ปีที่แล้ว

    Great work amichai although do you mind teaching us the magic spell used at 13:23 ??

  • @carloswinstonjavierllenas3117
    @carloswinstonjavierllenas3117 ปีที่แล้ว +1

    Supercool series. Is there gonna be more chapters? Also, are plans to show database integration (I suppose it goes to the infrastructure project)?

    • @amantinband
      @amantinband  ปีที่แล้ว

      Thanks! Yes and yes. Persistence via EF Core is the upcoming section in the series 🤙🏼

  • @Atom-Mercury
    @Atom-Mercury 4 หลายเดือนก่อน

    Great video thank you❤. What about structuring DDD with N-Tier architecture?

  • @belkapro1461
    @belkapro1461 ปีที่แล้ว +3

    how many episodes are planned, very interesting

    • @amantinband
      @amantinband  ปีที่แล้ว +2

      Thanks, Belka. We haven't touched persistence using EF Core & Testing yet, which are rich topics, so I'd say there are at least 8 videos left.

  • @aj.arunkumar
    @aj.arunkumar 3 หลายเดือนก่อน

    Great video Amichai... I have a question... Isnt it better to use records for implementing value objects ? I heard from Zoran Horvat that record types are mainly used for implementing value objects

  • @codewithkashif
    @codewithkashif ปีที่แล้ว

    @Amichai Mantinband so designing aggregates like this - Can we safely say that it is following feature slicing approach?

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

    Hello, can you please tell how numeric value can be used as Value Object and create it uniquely instead of GUID?

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

    Who takes care of populating fields in an aggregate?
    Does the query take care of calling each repository and put set them as an aggregate entities?

  • @msek97
    @msek97 ปีที่แล้ว

    Are you going to use Entity Framework in this course?

  • @messiyang2934
    @messiyang2934 ปีที่แล้ว

    I really like this video, this removes a lots of confusions in my mind, just curious about where should I put domain services? also under those folders for each aggregate? will that part be covered in upcoming episodes? Really appreciate it 😀

    • @mabdullahsari
      @mabdullahsari ปีที่แล้ว +1

      The Red DDD book by VV covers this.
      You need to introduce an additional level:
      Domain.Model
      Domain.Service
      Amichai's classes fall under Domain/Model.

    • @messiyang2934
      @messiyang2934 ปีที่แล้ว

      @@mabdullahsari much appreciate it mate 🙏

  • @Masteroxify
    @Masteroxify ปีที่แล้ว

    Will it be working with EF, Dapper ? Yours constructors always make new ID (primary key ?) , what's is incompliance with Database schema, is it ?

  • @nicolasundiano8406
    @nicolasundiano8406 ปีที่แล้ว

    Hi Amichai, im trying to configure the Id's and relations id's between aggregates with entity framework and i dont find a solution how to do it. I think that its simplier putting the type Guid instead of the value object in this case

    • @amantinband
      @amantinband  ปีที่แล้ว

      Hi Nicolas. We’ll cover this in depth in the upcoming videos. Generally, I like to design the domain as if the objects are stored in memory and then bend the persistence layer to support this idea. Changing the domain to support persistence is the last resort in my book

  • @TheWischmopps
    @TheWischmopps ปีที่แล้ว

    Hi, thanks a lot for your videos! What is the purpose of making the ctor private and using a static factory instead?

    • @mabdullahsari
      @mabdullahsari ปีที่แล้ว +2

      You can define multiple constructors for different purposes while keeping the state consistent.
      The internal workings of the object can be changed without worrying about breaking the clients that consume the said object.
      It also adds *meaning* when used correctly, I wouldn't agree with Create here necessarily though as it's very CRUD-dy.
      Member.Invite(...)
      Session.Plan(...)
      Permission.Assign(...)
      etc. these make use of the Ubiquitous Language.

    • @TheWischmopps
      @TheWischmopps ปีที่แล้ว

      @@mabdullahsari thank you!

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

    Can someone explain, what is the idea behind those "EntityId" objects and inheriting from them? What is the benefit?

  • @johnyepthomi892
    @johnyepthomi892 ปีที่แล้ว

    Can you use Typescript for the implementation of the DDD for maybe just one video. I understand you don’t focus on It but will help folks like me anyways, I just watch the conceptual part of and then I have to skip the rest as I don’t code in that language. You explain the concept well so I appreciate your effort.

  • @heniroger4304
    @heniroger4304 ปีที่แล้ว

    1:37 What is the difference between Aggregate vs entity, Could i persist aggregate or Only the entity can be persisted

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

    Hi, can you help.... why menuesection or menueitem are entities and not valueobjects? Do they have a life ?

  • @patrykk.4630
    @patrykk.4630 ปีที่แล้ว

    Hello Amichai,
    I had a bread from your course because lack of time.. I see that you mafe your repository with buber dinner private. I was following your videos from the beginning and I have a public repo with my code.
    Can I leave it as public?
    Your new videos are full of knowledge that I was looking for 😀 Great work

  • @birukayalew3862
    @birukayalew3862 ปีที่แล้ว +1

    Fantastic explanation and implementation😍 ... I wish I could be one of your patreon but online payment is not applicable in our country. Is there an option to become your patreon to access the source code?

  • @mohamadyousef163
    @mohamadyousef163 ปีที่แล้ว

    What an effort made keep it up (Y)
    Quick Notes though :
    1. regarding the readonly issue modify the public Ireadonlylist Items to be public ReadOnlyCollection this is not castable to List
    2. please Could you order the videos in the Domain-Driven Design PlayList in a chronological order
    Thanks a lot

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

    There is a lot of knowledge missing regarding this topic. My last company started adapting this style 6 months ago in new projects and I felt they were early adapters. Are there other sources besides you or working with Microsoft to obtain this information?

  • @kevlingo
    @kevlingo ปีที่แล้ว +2

    First things first: I really like this structure. I am new to Clean Architecture and just recently heard about vertical (or feature) slicing. One thing this structure does, however, is require a qualification when referencing the aggregate root. For example: public void AddDinner(Dinner.Dinner dinner) . Does this bother anyone else or is this a standard practice and I just need to get over the redundancy? I know this is probably just my weirdness, but thought I'd ask.

    • @amantinband
      @amantinband  ปีที่แล้ว +2

      I'm surprised no one has commented on this but you! This is definitely an issue when the namespace and the class name are the same. We'll cover it in a future video 🙂

    • @vagnerpadilha3485
      @vagnerpadilha3485 ปีที่แล้ว

      I asked myself the same question. I'm really curious how you're going to solve this. Could it be that the solution is for the aggregate folder to be plural??

  • @squadwuschel
    @squadwuschel ปีที่แล้ว

    Hi, its an amazing video tutorial - I've watched it in one week :-). But I am missing a nother big topic in your videos - what about logging? How do you log Errors, debugging Informations and so on? Thanks a lot for your tutorials.

    • @amantinband
      @amantinband  ปีที่แล้ว

      Thanks! We’ll cover logging in a future video 🤙🏼

  • @camoman1000
    @camoman1000 ปีที่แล้ว +1

    I noticed for domains you took a vertical slice approach why not continue to the architecture/ structure of the project also?

    • @amantinband
      @amantinband  ปีที่แล้ว +1

      I like maintaining the cohesion when possible. The projects are separated following CA, the internal separation however, as you said is by feature

    • @camoman1000
      @camoman1000 ปีที่แล้ว

      @@amantinband are you using CA for projects for the tutorial series to demonstrate CA? If so, do you use or would you consider using VSA?

  • @srezas3580
    @srezas3580 ปีที่แล้ว

    what's the estimated date of finishing this series?

  • @juke-duke
    @juke-duke ปีที่แล้ว +1

    Why is MenuSection a Entity here and not a ValueObject? Like why are only Ids ValueObjects?

  • @pazzuto
    @pazzuto ปีที่แล้ว +1

    The namespace and the class name (Menu.Menu) is really bothersome. May even cause issues when including the namespace somewhere else where, say, Menu would be used. Some experts out there use plural (Menus) or append Aggregate (MenuAggregate) to the folder/namespace. Hoping Amichai will explain how he tackles this issue. Great video as always.

    • @allenhansen5145
      @allenhansen5145 ปีที่แล้ว

      Thanks for bringing this up. I found the folder names/namespaces to be a bit bothersome as well. Thanks for the recommendation and for future readers, this is addressed in this video: th-cam.com/video/jm0CWlb5vvQ/w-d-xo.html

  • @gostau
    @gostau ปีที่แล้ว

    what is the shortcut for creating folders and files like you?

    • @amantinband
      @amantinband  ปีที่แล้ว

      I think I configured them both manually. I use ctrl-shift-n for folder and ctrl-n for file

  • @pguti778
    @pguti778 ปีที่แล้ว

    Hello csharper, .md is for mark down! Change that to .dm for domain.

  • @rhtservicesllc
    @rhtservicesllc ปีที่แล้ว +1

    Why did you use class instead of record when declaring the entities? World think that record would be better in this scenario

    • @mabdullahsari
      @mabdullahsari ปีที่แล้ว

      Uh-oh, I smell domain model anemia.

  • @ivandrofly
    @ivandrofly ปีที่แล้ว

    5:00 - Feature Slicing

  • @Jackinua
    @Jackinua ปีที่แล้ว

    It's little bit not about domains when you splitting classes by folders of class-types. Folder name should represent - domain.

  • @sandrorevazishvili1113
    @sandrorevazishvili1113 ปีที่แล้ว

    What is an application used to describe in 40s of the video

  • @bohdankhrystych6110
    @bohdankhrystych6110 ปีที่แล้ว

    Why you do not use int as type ids in your models? you use only string and Guid

  • @vincentcifello4435
    @vincentcifello4435 ปีที่แล้ว

    Thanks again for the great videos! MenuSections and MenuSectionsItems are entities within the Menu Aggregate Root. This makes sense, especially by the Cascading Delete Rule. However, I can't see the difference between those and MenuReview. Shouldn't MenuReview be a collection of entities just as MenuSections? You are treating MenuReviews the same as Dinners. However, if you delete a Menu, then there would be no MenuReviews, but the Dinner would not be deleted.

    • @vincentcifello4435
      @vincentcifello4435 ปีที่แล้ว

      Also, GuestRating is a collection of entities within Guest. Shouldn't the same be true for MenuReview within Menu? Really trying to understand.

    • @amantinband
      @amantinband  ปีที่แล้ว

      Hey Vincent! I cover this in previous videos - generally, we prefer having more aggregates if possible. This is for concurrency, memory and latency reasons. We will merge two aggregates to one when there are some constraints. These constraints can be forcing invariants or perhaps eventual consistency cannot be tolerated. Does that make sense?

  • @user-ci3pf5kc4z
    @user-ci3pf5kc4z 6 หลายเดือนก่อน

    Good way to explain :) I can only suggest to speak less fast :) Maybe 70% of the current speed as it causes some kind of pressure :) on an average mind processing the new knowledge/howtos etc... But, general layout and approach to explain DDD with code practice is quite good. Thanks!

  • @abdullahalrashidi497
    @abdullahalrashidi497 ปีที่แล้ว

    hey, thanks for the video
    although I have a different view angle here
    you totally ignored the bounded context here. and most of the time each bounded context gonna have only one aggregate.
    so if you considered the bounded contexts each context would be independent and there would be no common directory between them

    • @mabdullahsari
      @mabdullahsari ปีที่แล้ว

      I think your understanding of Bounded Context is lacking here.
      BuberDinner **is** the Bounded Context.

    • @abdullahalrashidi497
      @abdullahalrashidi497 ปีที่แล้ว

      @@mabdullahsari intresting!
      I wonder why a bounded context has multiple aggregations !!
      also, he divided the project directory into different related functionalities (Dinner, Bill, Guest...)
      for a simple domain, most of the time a bounded context is the subdomain but if the sub-domain serves different functionalities then we have to divide it into multiple bounded contexts

  • @scott98390
    @scott98390 ปีที่แล้ว

    At the 8:55 mark you replace every occurrence of "MenuId" with "MenuSectionId" - how did you select all instances of MenuId? That was no Ctrl+H !!

    • @WouterLindenhof
      @WouterLindenhof ปีที่แล้ว +1

      Select the range and the press CTRL+SHIFT+L to "Selection => Select All Occurrences", personally I always use just hold down CTRL+D which results in "Selection => Select Next Occurrence"

    • @amantinband
      @amantinband  ปีที่แล้ว

      Vim -> :%s/MenuId/MenuSectionId/g 😁

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

    I kinda don't get why you're creating an entire class around an Id.
    Can you explain or link a resource?

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

      Check out my video on the Identity paradox

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

      @@amantinband Just watched it. Perfect! Thanks!

  • @bramadl3460
    @bramadl3460 ปีที่แล้ว

    why am I, a JavaScript developer, watching C syntax here only to learn DDD T_T

  • @SilentTremor
    @SilentTremor ปีที่แล้ว

    I like a lot your material, there are a lot of great stuff presented and a lot to learn, but I personally I hate DDD for the fact that classes (object oriented) define the domain, I prefer to have "services" interfaces as fist class citizens, therefore writing any line of implementation is after I have the pipelines "contracts" get defined. And what I hate the most on DDD, unit test does find the problem in the domain quickly, but apart from domain validity does absolutely nothing in a SOA architecture, and no, I don't have a problem with unit test, i have a problem with code coverage of 100% won't find any of the integration issues.

  • @DOON2011
    @DOON2011 ปีที่แล้ว

    until the end of the Part13 , i was happy. because , i could see all source code on TH-cam , but , i can not see all domainmodels source code now. and i have to pay money?? i im very disppointed. my long time watstes

  • @vadims2236
    @vadims2236 ปีที่แล้ว

    Only I hate 'common' naming?

    • @mabdullahsari
      @mabdullahsari ปีที่แล้ว

      Vaughn Vernon prefers Common.
      He's the 2nd most credible person right after Eric Evans.

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

    Too much typing. Different classes for IDs??!

  • @carmineos
    @carmineos ปีที่แล้ว +1

    Clear as always, looking at the "homework" and specially at Dinner.Status and DinnerReservation.ReservationStatus, I guess one of the next videos will also cover enums?

    • @amantinband
      @amantinband  ปีที่แล้ว +4

      Yeah, perhaps I should have put an example of an Enum in today's video, didn't think about it 🤦‍♂️
      For now, you can either use native Enums or Ardalis's SmartEnums. I'll make sure to cover it in one of the upcoming videos. Thanks for commenting!