コード例 #1
0
ファイル: EmployeeController.cs プロジェクト: aircnae/asp2
        public ActionResult Edit(Employee employee)
        {
            EmployeeContext employeeContext = new EmployeeContext();
            employeeContext.Entry(employee).State = System.Data.Entity.EntityState.Modified;
            employeeContext.SaveChanges();

            return RedirectToAction("Index");
        }
コード例 #2
0
ファイル: EmployeeController.cs プロジェクト: aircnae/asp2
        public ActionResult Create(Employee employee)
        {
            EmployeeContext employeeContext = new EmployeeContext();

            employeeContext.Employees.Add(employee);
            employeeContext.SaveChanges();

            return RedirectToAction("Index");

        }