1.

What are the advantages of using Scaffolding in ASP.NET MVC?

Answer»

Scaffolding is a code generation FRAMEWORK used for ASP.NET web applications that will be helpful in effectively generating the code for CRUD(CREATE, Read, Update, and Delete) operations against your database.

The Advantages of Scaffolding are as follows:

  • Minimal or no code for the CREATION of DATA-driven Web applications
  • Pages will be completely functional and will have various functionalities such as insert, edit, display, delete, paging, and sorting
  • Faster development time
  • Filters will be created for every boolean or foreign key field
  • The database schema BASED built-in data validation.


Discussion

No Comment Found