Most voted "scaffold" questions
Scaffold is an age-old code generation technique based on common operation templates that are often used in different applications.
Learn more…18 questions
Sort by count of
-
54
votes4
answers17728
viewsWhat is a scaffold?
I started studying ASP.NET MVC and came across the term scaffold, but I didn’t understand it very well, so: What is scaffold? What is its use within ASP.NET MVC?…
asp.net-mvc .net terminology software-engineering scaffoldasked 8 years, 8 months ago Marco Souza 12,304 -
5
votes1
answer261
viewsASP.NET MVC Scaffolding for any table
Someone knows a way for me to generate CRUD automatic to my bank tables using MVC? I have 5 tables and would like to generate SinglePage apps automatically for them, without having to generate…
-
4
votes1
answer238
viewsHow to do Scaffolding in ASP.Net MVC with text and resources in en-BR?
How to do the texts generated by Scaffolding of ASP.Net MVC to be texts in? Note: It is not using ASP.NET MVC resources en-BR. Resources only translate automatically generated messages, and are not…
-
4
votes2
answers65
viewsIs it a bad idea to automatically versize classes with Jibx?
Where work we have a project (very old) that uses Jibx to generate some classes from schemas. These classes are generated in build logo os source do not exist in the project. Someone gave the…
-
2
votes0
answers27
viewsSolutiondir in T4 Template
I’m trying to carry a Assembly in the template T4, but when trying to use the $(SolutionDir) my Assembly does not load, only works if I put the whole way. That’s how it works <#@ assembly…
-
2
votes2
answers111
viewsError When Generating Scaffold
I scaffolding generating the controller, and Index is showing an error in (f => f.Position) with this mistake: Cannot Convert lambda Expression to type 'string' because it is not a delegate the…
-
2
votes2
answers116
viewsHow to update a CRUD with Scaffold?
I have a system with Ruby and a CRUD has been created via Scaffold and I would like to add some new fields. Because what I found on the internet was using the following command. rails generate…
-
2
votes1
answer138
viewsWhen changing a Model, how to redo Scaffolding?
I have a model, called CombustivelModels, where I made a Scaffolding generating the Controller and the Views, my doubt is, when making a review on that Model, has how to update via Scaffolding the…
-
2
votes3
answers3104
viewsError when adding Controler to ASP.NET MVC
Good morning, I am making a small solution using ASP.NET MVC with Entity Framework 6 to meet a work of my course. I believe the context class: namespace WillianRibeiro.EstudandoMVC.Web.Data{ public…
-
1
votes2
answers733
viewsASP.NET MVC Entity - Scaffolding for more than one table simultaneously
I saw that an ASP.NET MVC project with C# has 2 magic tools that are Entityframework and Scaffolding. With them it is possible in a few minutes to have all the features of registration with in the…
-
1
votes0
answers22
viewsHow to scaffold an existing base with Oracle.Entityframeworkcore without user superpowers?
I’m trying to do the scaffold of an Oracle base with Oracle.Entityframework.Core, but according to this link dotnet-db-samples, the following permissions are required: GRANT…
-
0
votes1
answer80
viewsHow to make a table in a scaffold Rails with the attributes of another scaffold
I’m having a hard time! I created a scaffold called a book and a so-called loan after I created a so-called report in the report I want to do a search for book loans I’m using Gem ransack to search…
-
0
votes1
answer143
viewsError while trying to generate Scaffolding
I’m trying to generate a Scaffolfing for the model below: namespace OneeWeb_v2.Models { public class CombustivelModels { [Key] public int CombustivelId { get; set; } [Required] public decimal…
-
0
votes1
answer264
viewsNot null parameter in Int fields
I am creating an application in Asp.NET MVC (I am using the Scafffolded feature), however, all the whole fields are being required to be filled in, as I remove this parameter? Note: I have tried to…
-
0
votes1
answer37
viewsModels and contexts do not appear in the Scaffold box
installed VS community 2019, and fiddling with an old project, I noticed that the classes don’t get greener as having reference, and I can’t access them by right clicking and going into…
-
0
votes1
answer180
viewsAutomatic generation of Controllers and Views with . NET Entity Framework and Mysql
EDIT: I solved the problem below and others that appeared later. See my answer. I created a Business project using the Entity Framework (EF) Code First approach. I have a database in Mysql with 8…
-
0
votes0
answers19
viewsUsing $Ajax to save filename to a scaffold
I’ve been working on it but I can’t solve my problem. I have a JS code that through an input I can access a txt file and get its name. I also created a History scaffold so I can store that name. if…
-
-2
votes1
answer24
viewsIs it possible to add a view with express-Enerator?
I would like to understand if after the creation of a project structure with express -v pug -c sass projectoName, it is possible to add some view or partial, to be using as header or footer. In…