Blazor Basics: Data Binding

Поделиться
HTML-код
  • Опубликовано: 18 окт 2024

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

  • @missionyoungblood
    @missionyoungblood 11 месяцев назад

    This whole series is a great tool for learning the fundamentals of blazer, can't lie I myself have been glued to your vids; even watching on the big screen lol!!
    i don't get how you implant the authentication feature in an existing project....basic i know, but strangely enough i haven't had to build this particular component myself in any of the projects i have worked on...any tips?

  • @MachineofLight
    @MachineofLight Год назад +1

    Really enjoying all your tutorials! Very good, simple explanation of all the different things we can do in Blazor 👍👍
    Could you possibly do a new version of this including the changes from .NET 7.0.1 (assuming they fixed the issues in 7.0)? That would really help a project I'm slowly getting into (total C# and Blazor beginner, but I'm loving it!)

    • @justblazorprogramming
      @justblazorprogramming  Год назад

      I tried to create a video on the new data binding enhancements, but unfortunately at the time they said that they didnt have the fix for the latest patch. I need to check again, but it is on the radar

  • @andersondamasceno1356
    @andersondamasceno1356 2 года назад +1

    After you finish vídeos on Basic things I would be glad to see vídeos on small projects.

    • @justblazorprogramming
      @justblazorprogramming  2 года назад +2

      Oh dont you worry, i got some in mind for small projects that are also nice for developers to have to show off in their interviews.

  • @baradongkamatis
    @baradongkamatis 2 года назад +1

    Keep it up man! 👍

  • @fededutto
    @fededutto 2 года назад

    cool video.. short, Fast and very usefull !!!!! thanks !!

    • @justblazorprogramming
      @justblazorprogramming  2 года назад

      thanks man, let me know if you think of ways to improve that youd like to see.

  • @MrSurfsAlot
    @MrSurfsAlot Год назад

    How do you bind data to the server side page? Like for salting passwords etc

  • @slowbrain8869
    @slowbrain8869 2 года назад

    Super helpful 👌

  • @_CazaBobos
    @_CazaBobos 2 года назад

    How can I do to bind the same input to more than one variable? I wanted to make a login Wich receives either email or username, and I'm not sure I know how to do it

    • @justblazorprogramming
      @justblazorprogramming  2 года назад +1

      Well this issue with that is you need to send whatever the string is into that one variable. Then in the backend you would need to parse it to see if its an email or not. But you will still be using a string in this case. Then after you see they are trying to use an email you can verify if it exists in the system and/or written properly (@mail.com), and/or if they are using a user name to see if that is in the system

  • @rkc61595
    @rkc61595 2 года назад +1

    Love the content! Are you on Twitter?

  • @kristofszabo666
    @kristofszabo666 2 года назад

    Good video! A video about the MVVM pattern in Blazor would be great too in the near future! Have a nice day! :D

    • @justblazorprogramming
      @justblazorprogramming  2 года назад

      That might not be such a bad idea and since Microsoft's plan is to make Blazor essentially take over the role of xamarin but still kinda keep the architecture of xamarin then it might be worth having a lesson on it. Its just a pattern anyways so using it or mvc or whatever should be natural to do. Thanks for the comment, i appreaciate it. Personally im used to MVC but ive used MVVM with Razor projects before to have the flexibility it gives. It should be similar to do in Blazor.