A collection of commands useful to work with blazor web applications.

dotnet new blazor -o BlazorWebAppMovies

dotnet watch

Command Palette (Ctrl+Shift+P), use the .NET: Build command to build the app.

dotnet new gitignore

dotnet aspnet-codegenerator blazor CRUD -dbProvider sqlite -dc BlazorWebAppMovies.Data.BlazorWebAppMoviesContext -m Movie -outDir Components/Pages

Entity framework

dotnet ef migrations add InitialCreate

dotnet ef database update