public ActionResult Create(User userdetail)
        {
            if (ModelState.IsValid)
            {
                //Save Category
                shopDB.AddToUsers(userdetail);
                shopDB.SaveChanges();

                return RedirectToAction("Index");
            }
            // Invalid – redisplay with errors
            var user = new User();
            return View(user);
        }
 /// <summary>
 /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUsers(User user)
 {
     base.AddObject("Users", user);
 }
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="userId">Initial value of the UserId property.</param>
 /// <param name="userName">Initial value of the UserName property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 /// <param name="emailId">Initial value of the EmailId property.</param>
 public static User CreateUser(global::System.Int32 userId, global::System.String userName, global::System.String password, global::System.String emailId)
 {
     User user = new User();
     user.UserId = userId;
     user.UserName = userName;
     user.Password = password;
     user.EmailId = emailId;
     return user;
 }
 //
 // GET: /UserManager/Create
 public ActionResult Create()
 {
     var user = new User();
     return View(user);
 }