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

Поділитися
Вставка
  • Опубліковано 5 січ 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
  • Навчання та стиль

КОМЕНТАРІ • 23

  • @johnconnor9787
    @johnconnor9787 4 місяці тому

    Nice course. Great explanation

  • @atheri0_n
    @atheri0_n 4 місяці тому +3

    Bro, you are a LIFESAVER

  • @user-xx8jm2rn2s
    @user-xx8jm2rn2s 8 днів тому

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

  • @Khal_Rheg0
    @Khal_Rheg0 Місяць тому

    Thank you!

  • @dyakosekanyan1672
    @dyakosekanyan1672 Місяць тому

    Thank you, my Bro

  • @aldkdenedik2451
    @aldkdenedik2451 4 місяці тому

    Nice course

  • @eatersdaily
    @eatersdaily 2 місяці тому

    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?

  • @Khal_Rheg0
    @Khal_Rheg0 Місяць тому

    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 4 місяці тому

    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 2 місяці тому

      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`.

  • @shafialanower3820
    @shafialanower3820 6 місяців тому

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

    • @TeddySmithDev
      @TeddySmithDev  6 місяців тому +1

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

  • @seyolas3588
    @seyolas3588 21 день тому

    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.

  • @wolfgangdiemer2511
    @wolfgangdiemer2511 3 місяці тому

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

  • @tod.photowalk
    @tod.photowalk 2 місяці тому

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

    • @TeddySmithDev
      @TeddySmithDev  2 місяці тому +1

      Night Owl + Material Icons

    • @tod.photowalk
      @tod.photowalk 2 місяці тому

      @@TeddySmithDev Thank you very much.

  • @kvelez
    @kvelez 2 місяці тому

    Pro.

  • @renatyrn
    @renatyrn 5 місяців тому +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 4 місяці тому +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 4 місяці тому +1

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