Syncfusion provides Visual Studio Scaffolding for Syncfusion ASP.NET Core platform to quickly add code that interacts with data models and reduce the amount of time to develop with data operation in your project. Scaffolding provides an easier way to create Views and Controller action methods for Syncfusion ASP.NET Core DataGrid, Charts, Scheduler, Diagram, Tree Grid, Rich Text Editor, Document Editor, and PDF Viewer controls.
Check that at least one Entity Framework model exists, and the application has been compiled once. If no Entity Framework model exist in your application, refer to this documentation to generate the Entity Framework model. After the model file has been added, check that the required DBContext and properties have been added. Build the application before try scaffolding. If any changes have been done in the model properties, rebuild the application once before performing scaffolding.
> The Syncfusion ASP.NET Core UI Scaffolder is available from v17.4.0.39.
The following steps explain you how to add a scaffolded item to your ASP.NET Core Web application.
Right-click the Controllers folder in the Solution Explorer, click Add, and then select New Scaffolded Item…
In the Add Scaffold dialog, select Syncfusion ASP.NET Core UI Scaffolder, and then click ‘Add’.
In the Syncfusion UI Scaffolder dialog, select the desired Syncfusion control to perform scaffolding, and then click Next.
Syncfusion UI Scaffolder for the selected control dialog will be opened. Enter the Controller Name and View Name as application requirements, and then select the required Model Class of the active project and its relevant Data Context Class, and then click Next.
Syncfusion UI Scaffolder for the selected control feature dialog will be opened. Select the required features, update the required data field, and then click Add.
The Controller and the corresponding View files are created into the application with the selected features of Syncfusion control code snippet.
Syncfusion provides Scaffolding command-line for Syncfusion ASP.NET Core to quickly add code that interacts with data models and reduce the amount of time to develop with data operation in your project. Scaffolding provides an easier way to create view file and Controller action methods for Syncfusion ASP.NET Core DataGrid, Charts, Scheduler, Diagram, Tree Grid, Rich Text Editor, Document Editor, and PDF Viewer controls.
N>Check that at least one Entity Framework model exists. If no Entity Framework model exist in your application, refer to this documentation to generate the Entity Framework model. After the model file has been added, check that the required DBContext and properties are added. Now, build the application, and try scaffolding. If any changes made in the model properties, rebuild the application once before perform scaffolding.
Install syncfusion.scaffolding tool globally by using below command.
dotnet tool install -g syncfusion.scaffolding
Update syncfusion.scaffolding tool globally by using below command.
dotnet tool update -g syncfusion.scaffolding
The following steps explains how to add a scaffolded item from command-line to your ASP.NET Core application.
After installed syncfusion.scaffolding tool, we can invoke syncfusion_scaffold command it shows the available controls
syncfusion_scaffold
To add a scaffolded item from command-line you have to invoke syncfusion_scaffold application like below syntax
syncfusion_scaffold [control][arguments]
Parameter | Description | Control |
---|---|---|
-p|—project | Path to .csproj file in the project. | All Controls |
-cname|—controller-filename | Name of controller file to be added in project. | All controls |
-vname|—view-filename | Name of view file to be added in project. | All Controls |
-m|—model | Database model name with namespace (example: WebApplication1.Models.Tasks). | All Controls |
-dc|—db-context | DbContext name with namespace (example: WebApplication1.Models.TasksContext). | All Controls |
-pkey|—primary-key | Set Feature name/column name as primary key. | Data Grid/Tree Grid |
-tid|—treegrid-id | Id of Tasks. | Tree Grid |
-pid|—parent-id | Parent Id value | Tree Grid/Diagram |
-x|—x-axis | X-axis of Chart | Charts |
-Y|—Y-axis | Y-axis of Chart | Charts |
-sid|—scheduler-id | Id of Scheduler Event. | Scheduler |
-stime|—start-time | Start Time of Scheduler Event. | Scheduler |
-etime|—end-time | End Time of Scheduler Event. | Scheduler |
—is-all-day | Set IsALLDay for Scheduler Event. | Scheduler |
-did|—diagram-id | Id of Diagram layout. | Diagram |
If you run the syncfusion_scaffold [control] command, the parameters of control shown like below image.
Run the following command to generate controller and view files through command-line by passing required arguments of the given control.
syncfusion_scaffold {controlName} --project "{projectFileNamewithPath}" --model {model} -dc {dbContext} -cname {controllerName} -vname {viewName} [controlMantoryParameter] [controlMantatoryParameterValue]
As we can see controller and view files generated successfully and also added the Syncfusion NuGet packages and styles which is required to render Syncfusion control.
Refer to the following UG links to render Syncfusion control after performed scaffolding.