ASP.NET Core Web API .NET 8 2024 - 6. POST (Create)

Sdílet
Vložit
  • čas přidán 5. 01. 2024
  • ASP.NET Core Web API .NET 8 2024 - 6. POST (Create)
    Github repo for this project: github.com/teddysmithdev/FinS...
    Twitter: / teddysmithdev
    Github: github.com/teddysmithdev
    Linkedin: / teddy-smith-015ba61a3
  • Jak na to + styl

Komentáře • 23

  • @user-xx8jm2rn2s
    @user-xx8jm2rn2s Před 9 dny

    I really like your videos, you're explanations are always clear. Thank you!!

  • @atheri0_n
    @atheri0_n Před 4 měsíci +3

    Bro, you are a LIFESAVER

  • @johnconnor9787
    @johnconnor9787 Před 4 měsíci

    Nice course. Great explanation

  • @Khal_Rheg0
    @Khal_Rheg0 Před 2 měsíci

    Thank you!

  • @dyakosekanyan1672
    @dyakosekanyan1672 Před měsícem

    Thank you, my Bro

  • @eatersdaily
    @eatersdaily Před 2 měsíci

    Dude i love the way how to teach, i watched these till episode 6 and i faced with a lot of problems and puzzles , but as i keep going, it is going to be easier! tnx a billion, would you please prepare a tutorial about how to create a website with blazor and dotnet?

  • @aldkdenedik2451
    @aldkdenedik2451 Před 4 měsíci

    Nice course

  • @Khal_Rheg0
    @Khal_Rheg0 Před 2 měsíci

    Why sometimes use DTO and other times Dto? It makes the naming scheme a bit confusing. I got an error because I used ToStockFromCreateDto instead of ToStockFromCreateDTO.

  • @Hamza-ky8us
    @Hamza-ky8us Před 5 měsíci

    One question. Does the EF handle the generation of the Id value? I didnt see any connection to it. And is it safem that a new Id will not be a used one?

    • @colin_williams_dev
      @colin_williams_dev Před 2 měsíci

      Yeah I agree, I found this a bit ambiguous.
      My guess is because the Mapper method: `ToStockFromCreateDTO` returns the Class **Stock**, and Stock has an int `Id` that is not-nullable; Entity must enforce the generation of a unique(?) Id when you new up a Stock (which will be the return stored in the local `var stockModel` returned from the `return new Stock{...} inside the Mapper method `ToStockFromCreateDTO`.

  • @seyolas3588
    @seyolas3588 Před 22 dny

    i dont think you have knowlodge of the things that happening behind the scenes. The nameof(getStockById) expression does not call the getStockById function; instead, it returns the name of the function as a string. This string is used by the CreatedAtAction method to generate the URL for the newly created resource.

  • @shafialanower3820
    @shafialanower3820 Před 6 měsíci

    From your experience do you enjoy MVC or ASP.Core more? I’m relatively new didn’t know they stopped updating MVC

    • @TeddySmithDev
      @TeddySmithDev  Před 6 měsíci +1

      I would say .NET core API. You don’t have to worry about the front end.

  • @kvelez
    @kvelez Před 2 měsíci

    Pro.

  • @wolfgangdiemer2511
    @wolfgangdiemer2511 Před 3 měsíci

    Nice video, but it hurts a little, that you didn't change the mapper method name ToStockFromCreateDto😉

  • @tod.photowalk
    @tod.photowalk Před 2 měsíci

    Very nice Thank you for the best practice and I have a question please. What is this theme.

  • @renatyrn
    @renatyrn Před 5 měsíci +1

    The great course so far. Why the id of the created stock so different from others? You ain't handle this moment in code.

    • @mischief9499
      @mischief9499 Před 4 měsíci +2

      because he must have inserted many rows on the same table and then removed those rows, but the DB will not rollback from the identity numbers it has created, that is why created stock Id is different from others.
      for example if you insert row1, row2 and row3, the respective identity IDs for them will be 1, 2 and 3. Now if remove all rows and insert one new row, the identity assigned to it will be equal to 4, not 1.

    • @mischief9499
      @mischief9499 Před 4 měsíci +1

      @@moodycat12 honestly dont know, i only guessed the reasoning behind why the row numbers are so different