This article will explain how you can create a simple application for insert, delete, and update using the components of MVC. All you need to do is first to create a database table using an empty MVC application project with RAZOR view engine. Then start writing a Model for the table. Create a class name with category inside Models folder as follows:
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Insert_Update_Delete_Demo.Models { public class Category { public int ID { get; set; } public String Name { get; set; } public String Description { get; set; } } }
Create another project then create a category class with getter and setter similar to table schema.
Read the rest of the tutorial here: http://www.dotnetfunda.com/articles/article1335-how-to-create-simple-mvc-3-application-for-insert-delete-and-update-functi.aspx