1.

Explain Scaffolding in MVC

Answer»

ASP.NET Scaffolding is a code generation framework for ASP.NET Web applications. Scaffolding quickly adds code that interacts with data models and reduces the AMOUNT of time to develop standard data operations in the project. With the help of scaffolding, we can add views of INDEX, Create, EDIT ACTIONS very easily and the code is itself added for each view and action methods.

Scaffolding consists of Scaffold templates LIKE page templates, entity page templates, field page templates, and filter templates. These templates allow to quickly build a functional data-driven Website. They are used to generate code for basic CRUD operations against the database with the help Entity Framework. These templates the Visual Studio T4 templating system to generate views for basic CRUD operations with the help of Entity Framework



Discussion

No Comment Found