Это видео недоступно.
Сожалеем об этом.

The Simplest Vertical Slice Architecture With .NET 8

Поделиться
HTML-код
  • Опубликовано: 16 авг 2024
  • Get the source code for this video for FREE → the-dotnet-wee...
    Want to master Clean Architecture? Go here: bit.ly/3PupkOJ
    Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt
    Join a community of 1000+ .NET developers: / milanjovanovic
    Are you tired of organizing your project across layers? Vertical Slice Architecture is a compelling alternative to traditional layered architectures. VSA flips the script on how we structure code. Instead of horizontal layers (Presentation, Application, Domain), VSA organizes code by feature. Each feature encompasses everything it needs, from API endpoints to data access. In this video, we will explore how you can structure vertical slices in VSA.
    Vertical Slice Architecture
    www.milanjovan...
    Vertical Slice Architecture: Structuring Vertical Slices
    www.milanjovan...
    Check out my courses:
    www.milanjovan...
    Read my Blog here:
    www.milanjovan...
    Join my weekly .NET newsletter:
    www.milanjovan...
    Chapters
    0:00 Understanding Vertical Slice Architecture
    4:53 Implementing a simple Vertical Slice
    8:53 Extending the Vertical Slice with validation
    11:15 Adding more Vertical Slices to the example

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

  • @MilanJovanovicTech
    @MilanJovanovicTech  Месяц назад +3

    Get the source code for this video for FREE → the-dotnet-weekly.ck.page/vsa-structure
    Want to master Clean Architecture? Go here: bit.ly/3PupkOJ
    Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt

    • @TheOmokage
      @TheOmokage 11 дней назад

      How to combine microservices with slices?

  • @olivier0003
    @olivier0003 Месяц назад +4

    Hi Milan, you produce so many interesting videos, that it takes all my day to view all of them !

  • @nikolaknezevic2117
    @nikolaknezevic2117 Месяц назад +1

    Great video! I hope you consider creating a full video on sharing code between slices. Code duplication can be a challenging, it would be nice to see different strategies for reducing duplication.

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

    Something else that nobody has mentioned, it’s super easy to
    Wrap the entire slice in a feature flag. Which opens door for a ton of flexible development options.

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

    Great stuff, Milan and also much congratz on getting MVP :)
    As for the video, I, personally, prefer using Clean + Vertical at the same time for non-crud apps, separating slices (folders basically) between projects. I.e "Products" folder in all projects. With enough dedication and discipline you can get best of both worlds.
    Great example anyway and love your approach with IEndpoint reflection stuff :)

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

      Thank you!
      I'm doing something similar to what you are when using CA. Works great.

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

    Great video!
    A nice video you could do:
    - best practices C#12
    - Best practices .NET 8 (top X best practices in general)…
    - Doing some talks on clean code…

  • @drhdev
    @drhdev Месяц назад +4

    Could you do a video on Owned Properties vs EF's new Complex Types and the nuances between them?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Месяц назад +2

      I did: ruclips.net/video/LhCD5CUSP6g/видео.html

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

      @@MilanJovanovicTechawesome thank you!

  • @MjwAllMusic
    @MjwAllMusic Месяц назад +1

    Could you make a video about the best practices with multithreading, async, etc?

  • @kodindoyannick5328
    @kodindoyannick5328 22 дня назад

    Wonderful video. Thanks much!

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

    pretty simple and straight forward 🤔👍

  • @trikztr
    @trikztr 12 дней назад

    vsa is great, love it

  • @ruekkart
    @ruekkart Месяц назад +1

    Nice, finally I can see a good and complete VSA example!
    Just one question, how would you suggest using this for gRPC, given that you need to handle proto files?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Месяц назад +1

      That's a technical concern. Maybe I should do a VSA + gRPC video?

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

      @@MilanJovanovicTech that'd be awesome, please 😃

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

    Excellent video as always!!!!.

  • @IAmFeO2x
    @IAmFeO2x Месяц назад +1

    Interesting approach - but is this really feasible when things get more complicated? Would you organize a more complex project this way? I organize my vertical slices in a hierarchical folder structure - this scaled well for me so far.

    • @MilanJovanovicTech
      @MilanJovanovicTech  Месяц назад +1

      Projects don't start out complicated (most of the time). They become complicated.
      So this is a great way to start any project, and restructure as your project grows.

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

      @@MilanJovanovicTech OK, thanks for your response. I'd still recommend to start right with folders as no subsequent switch is required as the project grows.

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

    I like the idea of vertical slice architecture. I am just worried how it would work in a large repo.

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

    I'm really interested in how to structure entities and their configurations in vertical slice. Should I place these two in same folder as my request command handler and response classes? Or maybe place them in different folders?

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

      Place them next to the DbContext? VSA is more about organizing around business capabilities. EF Core configurations are a minor concern.

  • @mehdi-vl5nn
    @mehdi-vl5nn 29 дней назад

    I do have a hard time understanding what 'use case' implies here! Is 'use case' in the sense of requirements, as it exists in RUP? If yes, that would end up being a class diagram. However, it seems the meaning of 'use case' is different in the context of CA

    • @MilanJovanovicTech
      @MilanJovanovicTech  29 дней назад +1

      A use case represents a unique piece of functionality in the system.
      Copy-paste from Uncle Bob's article:
      ---
      Use Cases
      The software in this layer contains application specific business rules. It encapsulates and implements all of the use cases of the system. These use cases orchestrate the flow of data to and from the entities, and direct those entities to use their enterprise wide business rules to achieve the goals of the use case.
      We do not expect changes in this layer to affect the entities. We also do not expect this layer to be affected by changes to externalities such as the database, the UI, or any of the common frameworks. This layer is isolated from such concerns.
      We do, however, expect that changes to the operation of the application will affect the use-cases and therefore the software in this layer. If the details of a use-case change, then some code in this layer will certainly be affected.
      ---

  • @buri-kizilkaya
    @buri-kizilkaya Месяц назад

    Thank you for your videos. I like the vertical slice architecture. What do you think about organising vertical slice architecture with multiple "mains" like a WebAPI project and a console project. The core should be the same on both. How do you structure such a project? My answer is to make the core vertical slice architecture and the multiple main project are implementend like the hexagonal architecture which access the public interface of the core.

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

      MediatR solves this pretty easily 😅

    • @buri-kizilkaya
      @buri-kizilkaya Месяц назад

      @@MilanJovanovicTech my question is how to structure such projects.

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

    Good Job !

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

    I like your approach.

    • @MilanJovanovicTech
      @MilanJovanovicTech  Месяц назад +1

      Thanks

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

      @@MilanJovanovicTech do you combine DDD with Vertical Slices, eg subdomain = slice?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Месяц назад +1

      @@krccmsitp2884 Most likely, yes. I'll expand on this in future videos and we can discuss possible approaches.

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

      @@MilanJovanovicTech great!

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

    Great, thanks!

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

    Thank you so much

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

    Hi Milan, thanks for the great video!
    I have a question though. Is there a purpose for putting the different components inside a static class (effectively the REPR pattern), as opposed to putting it in a namespace? And then reference it in the same way if you like, i.e. CreateProduct.Request, etc.. ?

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

      Less verbose:
      - CreateProduct.Request/CreateProduct.Response
      - As opposed to CreateProductRequest/CreateProductResponse
      I can use simpler names within the vertical slice, where these types matter

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

      @@MilanJovanovicTech I was thinking slightly different, calling the types still the same names, but in a folder, so:
      CreateProduct/
      - Request.cs
      - Response.cs
      etc.

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

    Hey Milan,
    Thank you for sharing this resource to us. However, a have a doubt: I have an entity named "Item" in selling and stock context, and if I understood well this entity can does move with cross-cutting. In this case, will are through of domain events? For example, I sold a guitar and I need to update my stock, can I create a domain event to update it?

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

      to me this sounds super clean. instead of injecting a StockService or StockRepo, and all the other parts of the system that needs that info

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

      Of course, this doesn't exclude using domain events or any other pattern

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

    Hi Milan. This is great, but it can be even simpler. You don't need the repository layer (just use Dapper and DbUp).

    • @drhdev
      @drhdev Месяц назад +3

      Is the repository layer in the room with us right now?

    • @Ry4nWTF
      @Ry4nWTF Месяц назад +1

      @@drhdev years of overusing repo layers has fried this guys mind

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

      @@drhdev HAHAHHAHAHHA

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

      EF Core is simple enough for me

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

    can you compare vertical slice with clean architecture?

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

    I like it! 🎉

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

    What visual studio theme is that?

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

    Great Video like always :D You mentioned to map the validation result to a ProblemDetails and currently I am trying to that with the Results pattern. So map the Errors in a Result to a ProblemDetails, but I am failing misserably. Could you make a video on that, where you show, how to map the Errors of a Result to ProblemDetails within minimal API. I know it's fairly easy to that with MVC controllers, but MinimalAPI gives me a headache.
    My use case is that I am validating business logic and want to return custom errors. So for example CreateProducts validates if the product already exists and if it exists return Result.Fail("custom message with error details). And I want to map the Error to a problem details within minimalAPI. The controller would return something like this:
    return response.IsSucess ? Results.Ok() : Results.BadRequest(response.error)

    • @MilanJovanovicTech
      @MilanJovanovicTech  Месяц назад +1

      I talked about it here: ruclips.net/video/YBK93gkGRj8/видео.html

  • @lucifer-5ybtn
    @lucifer-5ybtn Месяц назад

    theme name??

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

    Is it just me that swagger there are no operations defined in the spec using this approach?

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

    Nice, but I didn't like the tip on refactoring out code duplication to a shared component. That's a premature abstraction and introduces unnecessary coupling between vertical slices. What I mean is that today's duplicate parts probably evolve in different directions in the future.

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

    Brother Need some interview ques & ans to Crack .Net Jobs