Hi @raklali ,
Does Visual Studio Provide a Tool to Custom Design template specific to the needs of the project?
I understand you. But as far as I know, at present Visual Studio doesn't have this kind of tool to custom design the template.
MVC Controller with Views, using Entity Framework
This is the Code Generation tool (Microsoft.VisualStudio.Web.CodeGeneration.Design) for ASP.NET Core. Contains the dotnet-aspnet-codegenerator
command used for generating controllers and views.
Since it's a generic-purpose base tool, we can't expect it to do all the customization for us. By using the default templates and styles to generate views, it has already helped us to do much duplicate work, and if you want to add custom styles, you can add the styles to the generated elements (tables, rows, etc.) or cell). And Asp.net core uses bootstrap to add styles by default, you can also use bootstrap to add custom styles. For the in-place/ inline editing
function, you can achieve it using JQuery Ajax or use some JQuery data table plugin to do that.
If you want to the Code Generation tool to provide the above feature, you can submit a new feature request on the Scaffolding forum, hope they can provide this feature in the next version.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best regards,
Dillion