5 Beginner Mistakes that new Blazor Developers make

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ม.ค. 2025

ความคิดเห็น • 5

  • @tacolotto
    @tacolotto หลายเดือนก่อน +1

    Consider me subscribed. I'm the exact beginner Blazor developer that this video is for 😉Thanks again I'm only 2 videos in and learning so much already

    • @Mark-D-Inman
      @Mark-D-Inman  หลายเดือนก่อน

      Glad to have you.

  • @carlosirias4474
    @carlosirias4474 3 หลายเดือนก่อน

    Great summary, Thanks.

  • @davidtaylor3771
    @davidtaylor3771 4 หลายเดือนก่อน +1

    Good summary Mark. I would only add that you also call StateHasChanged if you are doing multiple asynchronous steps in a method such as OnInitializedAsync and want additional renders while awaiting. Blazor will do a render on the first await, and another after completion of execution of the method. If you have say 5 sequential async awaits inside the method, you should call StateHasChanged just before each await if you want additional renders.

    • @Mark-D-Inman
      @Mark-D-Inman  4 หลายเดือนก่อน +1

      Yes. Totally valid.