Verifone ruby CI Manual
How Scaffold templates works in ASP.NET MVC..
Scaffold templates are used to generate code for basic CRUD operations within your ASP.NET MVC applications against your database with the help Entity Framework. These templates use the Visual Studio T4 templating system to generate views for basic CRUD operations with the help of Entity Framework.Steps to create ASP.NET MVC CRUD operations using scaffolding
Adding controller to your project
Choosing a scaffold template for creating CRUD operations
Provide a name to your controller
The following actions are created for insert, update and delete operations based on scaffold template within User controller.