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

Поделиться
HTML-код
  • Опубликовано: 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
  • ХоббиХобби

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

  • @kuzaytepecagri
    @kuzaytepecagri 2 часа назад

    Perfect explanation sir, thank you for your efforts.

  • @user-xx8jm2rn2s
    @user-xx8jm2rn2s 11 дней назад

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

  • @johnconnor9787
    @johnconnor9787 5 месяцев назад

    Nice course. Great explanation

  • @Khal_Rheg0
    @Khal_Rheg0 2 месяца назад

    Thank you!

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

    Thank you, my Bro

  • @atheri0_n
    @atheri0_n 4 месяца назад +3

    Bro, you are a LIFESAVER

  • @aldkdenedik2451
    @aldkdenedik2451 4 месяца назад

    Nice course

  • @eatersdaily
    @eatersdaily 3 месяца назад

    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 2 месяца назад

    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 5 месяцев назад

    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 24 дня назад

    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.

  • @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.

  • @wolfgangdiemer2511
    @wolfgangdiemer2511 3 месяца назад

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

  • @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