Entity Framework Core + Blazor - Tutorial for Beginners

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

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

  • @aussieraver7182
    @aussieraver7182 Год назад +5

    I love the way you explain concepts with provided examples.
    Probably one of the best videos I've seen in years, cheers! Subbed

    • @nickproudprogrammer
      @nickproudprogrammer  Год назад +2

      Awesome, thank you! Really kind and glad to have you!

    • @lamoskalibre
      @lamoskalibre 2 месяца назад +1

      Totally agree I was a teacher of Databases and Computer Programming at College and I can totally agree with this. Nick you have really natural talent to teach! Clear explanation. Pre presentation of the goals of the class... review of what was shown... Great work!

  • @torrvic1156
    @torrvic1156 Год назад +2

    Thank you so much sir! That was a short and sweet video explaining some very important concepts. Honestly before this video I didn’t understood what was the point of using of Services . And now I understood that this is for data access and not to do it directly.

  • @mihaiflorin4511
    @mihaiflorin4511 Год назад +4

    Love it! I had a very difficult time understanding EF, your video helped me a lot to understand the basics !

  • @Tc-hs8rp
    @Tc-hs8rp Год назад +1

    I am a software engineer degree apprentice. This video is a gem, thank you mate!

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

    Great video, really made EF Core click for me.

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

    I just got admission to a Software company and surprisingly the use of core and Blazor sever app. And to be sincere this is the best video on the internet for a fresh start I watch a couple more but this 🔥🔥🔥. Please can you do more EFC AND BLAZOR CONTENTS 🙏🏼🙏🏼🙏🏼

  • @dmzb
    @dmzb 10 месяцев назад

    You just saved me!! i am passing my blazor course thanks to you bless uu

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

    Clearly under-rated video, good job!

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

    This is an excellent tutorial on EF Core. Good work!

  • @Tc-hs8rp
    @Tc-hs8rp Год назад +1

    just finished the video, what a video. Keep it up

  • @urbanguest
    @urbanguest Год назад +2

    Excellent video, very well explained!

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

    I just want to say thank you! Your video really helped me in the transition process in web app building.

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

    Great video! Really well explained and easy to follow.
    I had a hard time understanding videos from others creators because they skip explaining the boilerplate stuff. I love the you take your time building each file instead of scaffolding everything.

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

    Thanks for this, very clear instructions on EF that were very useful to me.

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

    Great video really enjoyed your style and simple explanation of using ef in a blazor project 👍

  • @codegeek-il5fm
    @codegeek-il5fm Год назад +1

    Thx Nick. This is useful as a beginner. One question about the CustomerService method AddCustomer. We could also do it as async and call it AddCustomerAsync, correct ? Of course, the method signature would change to public async Action AddCustomerAsync(), correct ? As a newbie, I am trying to understand when to use async/await and when not to.

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

      Lots of arguments for and against async programming in different situations. This article has some good examples stackify.com/when-to-use-asynchronous-programming/

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

    Fantastic. This helped a lot. Thank you!

  • @wightknuckle
    @wightknuckle 7 месяцев назад

    This is a fantastic tutorial, thanks so much! I learned loads today.

  • @UnconventionalPotato
    @UnconventionalPotato Год назад +2

    Thanks for the video , i like how you can see the SQL query in the output window. Would be nice if you showed how to CRUD or atleast create with the order model since its a foreign key

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

    Thank you very much Nick! This is a very valuable video !

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

    Very good video! You helped me to go forward with my masters thesis. Thank you very much :)

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

    Very well done!

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

    I really hope you can answer this questions. So in the tutorial you show how to insert a customer. But the questions is how do you insert a Order when you have that association or foreign key (class). I am trying to follow your tutorial but im struggling to do an insert statement with the orders class. Im wondering if there is something I am missing here. I gave the orders property customer a customer, but in the database it simply has an id so im not sure how that works.

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

      Do you have the [Key] attribute on your DB classes? Check your migrations also, they should show you what relationships have been created in EF

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

    Explained like a god! Thank you very much!!

  • @am-apps-games
    @am-apps-games Год назад +1

    Great Video! Thank you!

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

    Brilliant video, very helpful thank you! I'm just stuck on creating a method so I can output the input table data to a web page

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

      Thanks Gavin! You'd want to take the entity collection you get from EF and loop over it, adding the relevant table rows in html for each row of data. If you want to go through your issue a bit more detail, get in touch with me here www.automationmission.com/contact/

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

    Great video, thanks

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

    Nick, this is really fantastic. I will definitely subscribe to your channel! Thank you so much!

  • @Kevin-kg6wd
    @Kevin-kg6wd 2 года назад +1

    Hi Nick! There is another question, when I click create first try after running, data can insert to database, but second time I tried create(The values are different), the error "Cannot insert explicit value for identity column in table 'Customers' when IDENTITY_INSERT is set to OFF."will be triggered, Do you have any idea?

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

      Looks like you're trying to pass in a value for the 'id' column, but it is set to be managed on the SQL side. Take a look at the model you're inserting, and see if you've set a value for the id. If so, take it out and let SQL assign it.

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

      @@nickproudprogrammer God bless you for this easiest EF with balzor, I have ever come across, but i continue to have the same SqlException: Cannot insert explicit value for identity column in table 'Customers' when IDENTITY_INSERT is set to OFF. and i have checked my code very well and im using the same Model you used. Pls what could be wrong.

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

    Question, Doesn't this approach tightly couple your UI to the EF Entities. How would you resolve this?

  • @남경만-o8d
    @남경만-o8d Год назад +1

    정말 좋은 내용이네요. 감사합니다.

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

      네가 좋다 니 기쁘다! 시청 해주셔서 감사합니다.

  • @456btpro8
    @456btpro8 Год назад +2

    thanks dude

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

      You're welcome!

    • @456btpro8
      @456btpro8 Год назад +2

      @@nickproudprogrammer I got accepted for the internship thanks to you.

    • @nickproudprogrammer
      @nickproudprogrammer  Год назад +2

      @@456btpro8 wow amazing! Congratulations I'm glad my video helped.

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

    Excellent stuff! A clear example how to use DbContext factory with Blazor Server as recommended by Microsoft. When you say "using (var context = _dbContextFactory...)" the DbContext instance will get disposed automatically as it should, right?

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

      Thanks! Yes using will allow the object to auto dispose of it implements idisposable

  • @la-ki5wd
    @la-ki5wd Год назад +1

    Thank you!

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

    Good Video
    Keep it up
    What exactly you are trying to achieve here
    Anything specific
    Thanks

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

    Nice tutorial. One question has anyone made as good video like this where also concurrency is implemented. I mean for example situation where multiple users are updating or reading same table or even rows at the same time from own computers.

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

    Very nice

  • @himanshi.j8953
    @himanshi.j8953 Год назад

    Tysm for such a great video, u r best

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

    I got stuck when adding the initial migration with a "The specified deps.json [C:\Users\xxx\source
    epos\New folder\BlazorDemo\BlazorDemo\bin\Debug
    et7.0\BlazorDemo.deps.json] does not exist" error and did not find solution.

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

      How did you create the project? Did you create it via the command line?

  • @FasilMeressi
    @FasilMeressi 9 месяцев назад

    Top man!

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

    Things get a little spicy when dealing with objects that have complex relationships/navigations. Seems to be difficult to find educational content involving that type of thing.

  • @Kevin-kg6wd
    @Kevin-kg6wd 2 года назад +1

    Hi Nick! Thanks for your guiding! I followed your code, but click create button no response, do you have any idea? Thanks a lot! I searched and tried several ways but no success

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

      Hi! Did you define a method to handle the onclick event? If you want to send me you code, DM me on twitter. @nickproud

    • @Kevin-kg6wd
      @Kevin-kg6wd 2 года назад

      @@nickproudprogrammer Yeah, I added the OnInvalidSubmit="HandleSubmit" , I will send you the code, thanks a lot!