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
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)); }
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
If you are interested in more, check out our full course! www.udemy.com/course/aspnet-6-course
Enjoy the video and Happy Coding!
do you have discount for this course? I missed the promo in udemy.
I barely got 1/3 of the way through before I went and got the course! Awesome work.
@@NPCSkilla It'll be back.
Keep on good content for learning
Thanks 👍🙏🎉🎉
Thank you for the neat and clean explanation.
Great content!
Nice, relatively short tutorial for learning the basics! Everything in the video worked for me perfectly using .NET 8 as well.
I'm glad to hear that.
I didn't use any .NET9 specific code, just the framework
Amazing videos on this channel.. keep empowering the coders
That's my mission!
amazing video
Thank you!
Good way of explanation..keep going 🎉🎉
Great content 👌. Please keep it up, you're literally our mentors and professors at the same time 😂
I'm glad you like it. Always giving our best.
Awesome video brother! Extremely under-rated though. As a new C# and .NET learner, I sometimes feel lost. I hope this is normal..
Please launch a javascript course in english which completes in 10 hours just like your react js course
This is a great idea!
gracias :)
De nadda! :)
DotNet 9 not released yet just a preview version
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.
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
Yeh thats cool but I'm never ever going to install Copilot, AI, or cloud bull$$$$.
Guys, where is Git tutorial?
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.
I will never understand the WebDev obsession with making big data flow diagrams.
You are making a fool to the learner's
Hater ahh comment
At which point(s)?
This dude is probably too dumb to understand anything, thats why he made such commend lmao
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));
}
Thanks for saving me time! I encountered the same error warning.
Is there any other way to solve this than warnings.Ignore() ???
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
@@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