C# 클래스 Castle.MonoRail.ActiveRecordScaffold.ScaffoldingSupport
Uses the dynamic action infrastructure to add new actions to an existing controller.
Provided that a controller uses ScaffoldingAttribute like the following code: [Scaffolding( typeof(Account) )] public class AdminController : Controller { } Then the following dynamic actions will be added: newAccountPresents a form to the user fill in order to create the item on the databasecreateAccountTakes the information submited by the newAccount and creates the itemeditAccountPresents a form to the user fill in order to update the item on the databaseupdateAccountTakes the information submited by the editAccount and changes the itemlistAccountPresents a paginated list of items savedconfirmAccountAsks the user if he/she confirms the removal of the itemremoveAccountAttempt to remove the item and presents the results