Trying this out after Visual Studio 17.9 came out. All of this works. Good tutorial! Thank you
@sakshock5 ай бұрын
Wonderfully explained! Im a dotnet dev over a decade and just looking for training materials on blazor front end !
@jcchaconjr10 ай бұрын
Very nice! As a bonus, I also added the link for the Movies page to the NavBar and included the BootStrap "Film" icon to it. 😁
@FranciscoMarcosMilhomemAbreu10 ай бұрын
Hi, friends! I am using Linux and VS Code. What is the command line to make this scaffold?
@AthelstanEngland6 ай бұрын
It seems you have to add, via NuGet, Microsoft.AspNetCore.Components.Quickgrid or Microsoft.AspNetCore.Components.Quickgrid.EntityFramework for the grid. Not sure if that should be added automatically but I had to do it manually. Also not certain what differences there are in the EF specific one.
@glautermoulin11 ай бұрын
Thank you ! My VS2022 don't have the "Razor Components Using Entity Framework (CRUD)", only option "Razor Component"
@sikor0211 ай бұрын
Same. I just did the Visual Studio update, and I see only Razor Component
@milesmoyo545810 ай бұрын
thank you so much for saying this I thought I was alone@@sikor02
@huw167610 ай бұрын
You need Visual Studio 17.9 which came out on the 13th of February 2024
@lenso37579 ай бұрын
Blazor is powerful m enjoying.
@amitkumdixit3 ай бұрын
InvalidOperationException: EditForm requires either a Model parameter, or an EditContext parameter, please provide one of these.
@remomagalhaes47078 ай бұрын
Really great tutorial series
@CompuCat-SI9 ай бұрын
Thanks Daniel for the explanation. A question, in version 17.9.4 of Visual Studio 2022, in a Blazor Web App, when I do the Scaffold, the structure of the folders in the project is different. What should I do to identify the new page in the project and in the explorer?
@EpTechie11 ай бұрын
Thank you 🙏 However, I don't have the "Razor Components Using Entity Framework (CRUD)", the only option is the "Razor Component" .
@BrianMinaji11 ай бұрын
I don't have it either, I'm running 17.8.5. Near the beginning of the video, he says you need 17.9, which is still in preview.
@milesmoyo545810 ай бұрын
Could that be the reason why its not showing on our end @@BrianMinaji
@jorgepedraza127511 ай бұрын
Excellent video. 💪
@riki694110 ай бұрын
Can you add more than one scaffolded item on one project?
@mehmethanifierenler361226 күн бұрын
thanks
@colbydanesaddoris10 ай бұрын
This is really Cool and helpful thanks!. I had to run the Add new Scaffolded item twice to get it to actually generate. Not sure what happened the first run. Anyone else have issues with the auto completing doing all sorts of bad corrections and auto fills? I am guessing this is the co-pilot doing this..
@rodfalanga37708 ай бұрын
I experienced the same behavior. I had to run the Add New Scaffolding Item twice. Weird. Maybe GitHub Copilot interfered with it? (Just guessing.)
@horacioserrano54309 ай бұрын
What about structures with foreign keys/child rows on other tables?. Also, this is violating layer abstraction.
@CurlackАй бұрын
Also, what about server side pagination, sorting and filtering? The grid demos are almost never dealing with that. Looking at dropdown lists you might want to use virtualization, but if you're looking to set a default value NOT in the first clump of data, how do you make sure it 'virtualizes' to the first subset containing the default value?
@naunihalsidhu9 ай бұрын
I am using VS 2022 Version 17.10.0 Preview 2.0 and i don't see that option
@techiebhogi196011 ай бұрын
Does it to work with multiple relational models
@LuisSanchez-sy4rp7 ай бұрын
I need to try it but i didnt see where that data goes to. never tried scafolding, looks great. But still thinking where data goes. I will do it and find it and where it is.
@LuisSanchez-sy4rp7 ай бұрын
I am back. Ok this what I found. The DB its create inside Visual Studio on it is own data base engine (MSSQL ) What I did was to change the ConnectionString to my local SQL. Then the rest still the same, Inside of a appsetting instead of "MoviesScafoldingContext": "Server=(localdb)\\mssqllocaldb;Database=MoviesScafoldingContext-06e7963a-3c6a-4b52-a208-d93c985d5459;Trusted_Connection=True;MultipleActiveResultSets=true" I did "Movies2DataContext": "Server=DESKTOP-4P0825K;Database=Movies;Trusted_Connection=True;MultipleActiveResultSets=True;TrustServerCertificate=True" Previuosly I created my own DB Movies