Master the Builder Pattern: The King of Creational Design Patterns in C# | ASP.NET Core Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ก.ย. 2024

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

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

    Programming magic is one of the reasons I LOVE this field. It's a beautiful thing when a library or piece of software works in a magical way and makes the other developers think about how it was achieved. Puzzles everywhere!

  • @paultumbaco5300
    @paultumbaco5300 ปีที่แล้ว +7

    I have to say this pattern was one of the most complex for me to understand and I'm still struggling in knowing when and how to develop it in my own in the correct way. This a good example,complex though.. thanks for sharing

  • @kristianaranda
    @kristianaranda ปีที่แล้ว +7

    It is amazing how, by using the right patterns and techniques, we can hide the complexity of the domain and show only the "intention revealing expression" (I loved this sentence) to the consumer. Thanks for sharing!

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

    This is a good demonstration for me to understand Builder Pattern. Great lesson! Thank you for making that!

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

    Great Lesson! I always learn something new with all your video sir. Thanks.

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

    Thank you Zoran for such good , real-world example

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

    Keep up the good work. Very nice explanation with real world example.

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

    Excellent video! And yes, this is a very complex example. It fits really great for scenarios like this one.

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว +3

      If I came up with a simpler example, then there would possibly be no justification to apply the Builder in the first place. I might also make a video that demonstrates how exactly it comes that we don't need a Builder in simpler cases.

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

      I understand. I'd be more than happy to see another video with simpler alternatives, but take your time :). Thank you!

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

      Great use case of builder with proxy methods, Before I just used it to create test data for complex objects , now I have some new insights😊

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

    Excellent I would like to see how you do your strategy pattern and adapter pattern

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว +4

      I do have plans to demonstrate Strategies in one of the future videos.

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

    Great Video! I would love if you produce some video about "Vertical Slices" vs "Onion/Clean Architecture" (vs whatever you find better 😁)

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว +5

      Oh I will! I will be speaking about vertical slices next week at the SDD London conference and I plan to add a short video with that part to TH-cam when I get back.

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

      Looking forward t see that :)

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

    Excellent ❤

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

    This is great content. Can we have the link to the full course showing how all the implemetations of the BOOK STORE app.

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว

      There is no full course at the moment. I might make it in the near future, though.

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

      @@zoran-horvat will be on the lookout then... ☺️

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

    Thank you for the great video! What if we need to guide the users of the builder on which method they can use next? For instance if builder has mandatory steps or one steps can be called only after others? I guess we can introduce different interfaces and return them after each operation. Maybe you can share what could be the better way of implementing such complex builder?

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว +1

      That is a good question, indeed! You may try this article I wrote a few years ago: codinghelmet.com/articles/advances-in-applying-the-builder-design-pattern
      Not everything in that article would I back today, but it should be about the topic you have mentioned here.

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

      Thank you so much!

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

    Seems the builder is capturing domain concepts that belong to the invoice. The invoice itself is anaemic. How about capturing rules in the model itself and then a printer decoration object knows how to produce the output. Thoughts?

    • @zoran-horvat
      @zoran-horvat  10 หลายเดือนก่อน +1

      There is no problem in having domain rules in the builder if the builder is named after the domain it is building. Its whole purpose is to relieve the domain model from complex construction logic.
      It is true that the domain model has remained empty (not anemic yet) after the change, but that is only because this is the demo code. I didn't implement any behavior of the invoices other than their construction and UI. You can imagine further requirements being implemented right in the invoices, and then you would appreciate them not being inflated with the construction logic.

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

    Hi Zoran, I've noticed that Pluralsight have marked some of your Tactical Design Patterns courses and your "Making Your C# 6 Code More Object-oriented" course as retired. Would you still recommend watching these courses to somebody who have not gone through these before?

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว +1

      I still recommend those courses until I publish a new version. The problem with older courses is in the use of obsolete syntax, but on the positive side the themes gave not changed, and the way we address the problems is still the same.

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

      @@zoran-horvat Thanks, i will check these out :)

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

    Is it good practice to use business logic in builder method? While unit testing the calculations will it not become diffcult?

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว

      This is a very specific builder - it is part of the domain model and it naturally contains domain logic.
      However, if more requirements came, asking for variation, then the Builder would probably have to receive appropriate strategies or something of that sort.

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

    @zoran-horvat Isn't this just a "Fluent Interface" implementation and not actual Builder pattern?

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว

      It is actually a fluent builder, like StringBuilder, for example.

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

    I've used the builder method a couple times in the past, but instead of returning "this" I would return an Interface with the appropriate "next" steps exposed.

    • @zoran-horvat
      @zoran-horvat  10 หลายเดือนก่อน

      That is the fluent builder design. It is useful in cases when an unrestricted use of the builder could cause confusion and errors.

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

      @@zoran-horvat Thanks! Great video's by the way.

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

    This is a great example for encapsulating the extremely complex logic to make life easier for a caller. I have a question for this solution though. How would you unit test this? For example, AppendFee, AppendInterest and GetInterest for are complex enough on their own to have unit tests for each of them separately. But since they're private, you can't reach them from the tests (unless you make them internal and make internals visible in test project or public, but that brings up some red flags in design, so I don't think it's a good approach). You can test the builder as a whole, but since you call AppendFee(AppendInterest(deliquency)) in Build method, it would not really be trivial to know why some test failed - is it the fee calculation that's wrong or interest calculation? Or maybe both? Or maybe neither? Thanks in advance.

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว +1

      I would focus testing on the attributes of the product.
      Builder normally has more than one responsibility, if we assume that each component it manages is a separate responsibility. Each component naturally requires unit testing, and so I envision it would be useful to focus on one component per test and keep all the rest at bare minimum. Then assert the qualities, the consequences caused by that component in the product.
      I think that adding variation to the builder for the sake of testing would be overengineering. The whole purpose of the builder is to be the single point where the rules of composition are defined, so leave it be that way, that is my opinion.

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

      @@zoran-horvat So, if I understood correctly, in the example of AppendFee(AppendInterest(deliquency)), you'd construct an object via the builder in which the AppendInterest(deliquency) would not change the deliquency at all (or as little as possible), but in that object there's a significant change done by AppendFee method for the result of previous operation and test the result? And another test would be vice versa - interest would "change the result a lot", while fee would make minimal or no difference to the final result?

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว +1

      @@m5s10 You can skip any method that is not mandatory and use simplest possible arguments in those that must be called. Then carefully call the method you are interested in, and assert that the result of that call has caused the expected change in the product.

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

      @@zoran-horvat understood, thank you

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

    Can we create an automated unit test for this builder class?

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว

      Yes, of course. It would test all invariants and postconditions from the specification of requests. Since none of the requirements has any variation, there is nothing to inject into the Builder, which makes testing easier.

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

    Are you spying on me? I just used this pattern today.

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว +3

      I can't disclose my sources :)