ASP.NET 9 MVC Tutorial for Beginners - C# web development made easy

Поділитися
Вставка
  • Опубліковано 25 лис 2024

КОМЕНТАРІ • 36

  • @tutorialsEU
    @tutorialsEU  2 місяці тому +1

    If you are interested in more, check out our full course! www.udemy.com/course/aspnet-6-course
    Enjoy the video and Happy Coding!

    • @NPCSkilla
      @NPCSkilla 2 місяці тому

      do you have discount for this course? I missed the promo in udemy.

    • @phyoga7645
      @phyoga7645 2 місяці тому

      I barely got 1/3 of the way through before I went and got the course! Awesome work.

    • @phyoga7645
      @phyoga7645 2 місяці тому

      @@NPCSkilla It'll be back.

  • @ouass007
    @ouass007 2 місяці тому +1

    Keep on good content for learning
    Thanks 👍🙏🎉🎉

  • @starsonearth8952
    @starsonearth8952 2 місяці тому +1

    Thank you for the neat and clean explanation.

  • @Pejon07
    @Pejon07 14 днів тому

    Great content!

  • @Fliz_Flaz
    @Fliz_Flaz 2 місяці тому +1

    Nice, relatively short tutorial for learning the basics! Everything in the video worked for me perfectly using .NET 8 as well.

    • @tutorialsEU
      @tutorialsEU  2 місяці тому

      I'm glad to hear that.
      I didn't use any .NET9 specific code, just the framework

  • @GalaxyCookies76
    @GalaxyCookies76 2 місяці тому

    Amazing videos on this channel.. keep empowering the coders

  • @stevenkamwaza6206
    @stevenkamwaza6206 2 місяці тому

    amazing video

  • @GKSPACE5680
    @GKSPACE5680 2 місяці тому

    Good way of explanation..keep going 🎉🎉

  • @FidelisMCheeloII
    @FidelisMCheeloII 2 місяці тому

    Great content 👌. Please keep it up, you're literally our mentors and professors at the same time 😂

    • @tutorialsEU
      @tutorialsEU  2 місяці тому

      I'm glad you like it. Always giving our best.

  • @SimplyZaidy
    @SimplyZaidy Місяць тому

    Awesome video brother! Extremely under-rated though. As a new C# and .NET learner, I sometimes feel lost. I hope this is normal..

  • @bharatdubey83
    @bharatdubey83 2 місяці тому

    Please launch a javascript course in english which completes in 10 hours just like your react js course

  • @davidmares6053
    @davidmares6053 2 місяці тому

    gracias :)

  • @MTSightseeing
    @MTSightseeing 2 місяці тому

    DotNet 9 not released yet just a preview version

    • @tutorialsEU
      @tutorialsEU  2 місяці тому

      Yes! I just recorded it in June and it didn't make sense to use 8, if 9 is so close to release. Especially for basic stuff.

  • @sifundosiphesihle4492
    @sifundosiphesihle4492 Місяць тому

    Hi I want to pay for a course in your category, which one will ensure i am equipped from graduate dev to be(equivalent to junior or experienced dev in terms knowledge and topic covered) junior dev, and will you have promo on black friday like you did few days back

  • @JonesCrimson
    @JonesCrimson 4 дні тому

    Yeh thats cool but I'm never ever going to install Copilot, AI, or cloud bull$$$$.

  • @ДмитроСвітлинець-й3ч
    @ДмитроСвітлинець-й3ч 2 місяці тому

    Guys, where is Git tutorial?

    • @tutorialsEU
      @tutorialsEU  2 місяці тому

      That's a good question. I just recorded an hour of GIT basics for my new Java Course. It comes out in 4 weeks and will be a banger.

  • @JonesCrimson
    @JonesCrimson 3 дні тому

    I will never understand the WebDev obsession with making big data flow diagrams.

  • @MTSightseeing
    @MTSightseeing 2 місяці тому

    You are making a fool to the learner's

    • @NationRise_12
      @NationRise_12 2 місяці тому +2

      Hater ahh comment

    • @tutorialsEU
      @tutorialsEU  2 місяці тому +1

      At which point(s)?

    • @SimplyZaidy
      @SimplyZaidy Місяць тому

      This dude is probably too dumb to understand anything, thats why he made such commend lmao

  • @ZostaćAdminem
    @ZostaćAdminem 18 днів тому +2

    I encounter a problem when I try to insert data to database. I got an error:
    "An error was generated for warning 'Microsoft.EntityFrameworkCore.Migrations.PendingModelChangesWarning': The model for context 'ApplicationDbContext' has pending changes. Add a new migration before updating the database. This exception can be suppressed or logged by passing event ID 'RelationalEventId.PendingModelChangesWarning' to the 'ConfigureWarnings' method in 'DbContext.OnConfiguring' or 'AddDbContext'."
    Adding a error ignore method helps me. Paste this into ApplicationDbConetext:
    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    {
    optionsBuilder.ConfigureWarnings(warnings =>
    warnings.Ignore(RelationalEventId.PendingModelChangesWarning));
    }

    • @TheJura91
      @TheJura91 16 днів тому

      Thanks for saving me time! I encountered the same error warning.
      Is there any other way to solve this than warnings.Ignore() ???

    • @barnabas_666
      @barnabas_666 7 днів тому

      well, got same error and after I fix it in same way it just came on my mind to check here if someone had same problem. I see someone had. I could save myself half hour googling :) Thanks anyway

    • @seekthe9
      @seekthe9 5 днів тому

      @@TheJura91 I want to know too! What is the cause of the problem? I don't want to just sweep it under the rug, especially not something this basic