Blazor Bug Tracker With Scafolding
In Visual Studio, there is a feature under Add – New – Item called "Add Scaffolding Item". After viewing a couple of YouTube videos on how to use it, it got me thinking, is this a realistic feature, or is it just a nice demoable feature? It does demo nicely. I decided to try it and see for myself how much value this feature can add for me when creating new applications that need CRUD actions. The Test Application To validate the scaffolding, I will be building a basic defect-tracking application using the scaffolding feature. We will have only three issue types and will be using Entity Framework with an SQLite database. I will be focusing on the scaffolding, not the features of the application. Granted it will be a scaled-down system, but there is CRUD used. These are the issue types I will be creating: 1. Bug – issue report from the internal team 2. Defect – Like a bug but it was reported from a customer. 3. User S