ASP.NET Core Web API .NET 8 2024 - 2. Models

Поделиться
HTML-код
  • Опубликовано: 1 янв 2024
  • ASP.NET Core Web API .NET 8 2024 - 2. Models
    Github for project: github.com/teddysmithdev/FinS...
    Twitter: / teddysmithdev
    Github: github.com/teddysmithdev
    Linkedin: / teddy-smith-015ba61a3
  • ХоббиХобби

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

  • @DChristop
    @DChristop 17 часов назад

    Awesome teaching!!!

  • @SohailKhan-ll9kh
    @SohailKhan-ll9kh 6 месяцев назад +2

    Amazing course. Subscribed!

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

    Awesome teaching. API's where its at. Love all your visuals for explaining things

  • @chrisfanara1224
    @chrisfanara1224 3 месяца назад +1

    You make me laugh man, AND learn. Appreciate you!

  • @stanleyjekwu6810
    @stanleyjekwu6810 6 месяцев назад +3

    Great stuff Teddy...I'm happy for this series...your MVC series 2022(RunersClub cleared me on MVC forever 😂)...I will join this series ASAP

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

    Thank you!

  • @shafialanower3820
    @shafialanower3820 6 месяцев назад +2

    “We are gonna go deep in this video” 😂 I swear you are the unintentional funniest person teaching these stuff. Not a single video where I don’t crack a smile LOL

  • @restocked
    @restocked 6 месяцев назад

    Very good.

  • @joaogabrielv.m328
    @joaogabrielv.m328 6 месяцев назад +1

    Beginning 2024 with all the boost, sup Teddy!

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

    really good stuff

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

    what's the softwere u are using is when u explaining stuff in the start ?

  • @ricardovilla4072
    @ricardovilla4072 6 месяцев назад +2

    Hey man, happy new year, keep the good work! Maybe i missed that part, but its any reason to use vscode over vs?

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад +1

      I got asked for VS code .NET constantly. Visual Studio is a huge barrier to entry for people. Also so after learning with VS code they can move onto my VS videos!

    • @ronjohnson123
      @ronjohnson123 6 месяцев назад +2

      @@TeddySmithDev would you recommend following along in vscode if your already comfortable in VS or do you think it would be best to follow in VS?

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад +1

      If you’re already comfortable with VS, I’d go VS. the only bad part tho is that VS doesn’t pair well with React. Pure API tho VS is unbeatable.

  • @TheAndyCooperz
    @TheAndyCooperz 6 месяцев назад

    Hi Teddy, another great video... very detailed!
    Is there any benefit to using List over an interface either IEnumerable or IList. I've read that it's always better to use an interface over concrete classes, any thoughts?
    Thanks again :)

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад +2

      Yeah interface would actually be the optimal choice in this case. You would get benefit that if you ever changed to another collection it would still work. I naturally always want to use List for everything out of habit lol

  • @jaymartinez311
    @jaymartinez311 6 месяцев назад

    First off thank you for the series 🙏🏾. I hope 🤞🏾 at some point we get to some auth, since read dotnet 8 updated it. If you can help please tell me what website is that where you have your diagrams?

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад

      Yeah it’s got auth! Also, diagrams are made on Microsoft Whiteboard but there’s no way to share them.

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

    Pardon Mr. Ted, is there any extentsions in VS Code to support building .NET App?

  • @4404
    @4404 6 месяцев назад

    please explain for us identity, authentication and authorization ♥

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

    Hey can someone help on why I'm not getting the auto complete suggestions like Empty in my vs code, I have installed C# DevKit

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

      I think you need this IntelliCode for C# Dev Kit

  • @malds.0629
    @malds.0629 3 месяца назад

    What is a best way to work with money? I heard so many times in other programming languages that it's important to use int cents, not decimal dollars. What is conventional in c#?

    • @TeddySmithDev
      @TeddySmithDev  3 месяца назад +1

      Decimal. Not using decimal will cause weird rounding issues.

    • @malds.0629
      @malds.0629 3 месяца назад

      @@TeddySmithDev thank you very much for replying!

  • @rubendavidperezb.chaveco4062
    @rubendavidperezb.chaveco4062 5 месяцев назад

    3:56 I don't know Teddy, I don't know if there are other parents who are so cruel as to name their child that

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

    steve jobs likes WHAT!?!

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

    Hi Teddy, I have a question. Why couldn't we just set those properties as nullable, than make them empty ?

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

      You could do that too. Personal preference.

  • @Darbokst
    @Darbokst 5 месяцев назад +1

    your stock and comments classes are public, so you wouldn't need the get; set ?

  • @alucard4974
    @alucard4974 5 месяцев назад +1

    how to change:
    ... ...()
    {
    }
    to
    ...() {
    }
    in VSC for c#/all languages?

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

    Can someone help me Why I'm having error with this part of the code? [Column(TypeName = "decimal(18,2)")]
    The type or namespace name "ColumnAttribute" could not be found (are you missing a using directive or an assembly reference?) CS0246

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

      Try running "dotnet build" in terminal. Sounds like the DLL files are corrupt/messed up.

    • @11-41
      @11-41 4 месяца назад

      try to add this: using System.ComponentModel.DataAnnotations.Schema;