1
votes

Is it possible to have CRUD files and capability with a Blazor WebAssembly app? The same way you can with an Razor Pages by using the scaffolding tool. I'm trying to build a Blazor WebAssmebly app that has CRUD capabilities with a local DB.

1
I have not seen any official ones, unfortunately. - Umair
Thanks for the response. I'm going to try and do it the way you would with Razor pages(docs.microsoft.com/en-us/aspnet/core/data/ef-rp/…). I'm hoping that because the blazor apps are written using razor markup it will work. - Jorge

1 Answers

0
votes

Blazor Scaffolding support is provided only for Blazor ServerSide application and Blazor Hosted application. Checkout the Syncfusion documentation

In your case you should create another project with Blazor Server instead of Blazor WebAssembly to get those Scafold options for CRUD generation files on Visual Studio