Tour of Microsoft's Reference ASP NET Core App eShopOnWeb

Поділитися
Вставка
  • Опубліковано 4 лис 2024

КОМЕНТАРІ • 10

  • @LinZeeSpinZee
    @LinZeeSpinZee 4 роки тому

    Currently trying to implement this pattern on a side project. Really like how elegant it is. Thanks for sharing.

  • @christoph_wattever
    @christoph_wattever 5 років тому +1

    The architecture has its merits (reads are using repos directly, writes are using services) and it's quite easy to understand. Seeing Expressions in the specifications classes it's quite obvious that the ORM in use is EF without having a look at the repository implementation. No way it would be implemented like this using Dapper for example. So imo write side is nice, on the read side I don't like the specifications, especially the leaky abstraction of EF through Expressions

  • @blueobject
    @blueobject 5 років тому +1

    Specifications are awesome! Long ago I was using callback delegates for on the fly specifications but it always felt wrong and worse bad pattern and even harder to explain to developers but it got the job done for small projects... this solves a ton of issues people have with domain driven architecture

  • @barsvelioglu2276
    @barsvelioglu2276 5 років тому

    Neat explanation. Also nice to hear why the folder structure and layers are like that.

  • @ilovepandaypoe6056
    @ilovepandaypoe6056 5 років тому +1

    Specification is just a rewriting of the predicate and include parameters thats already in EF

  • @blueobject
    @blueobject 5 років тому

    Great presentation!

  • @bsouzafilipe
    @bsouzafilipe 5 років тому

    Great presentation

  • @francisofosuafriyie9903
    @francisofosuafriyie9903 5 років тому

    Awesome video

  • @LivingTheDream21
    @LivingTheDream21 5 років тому

    Awesome! Very elegant.