public ActionResult Create_Employee(EmployeeViewModel employee) { if (employee != null && ModelState.IsValid) { var target = new Employee(); target.FirstName = employee.FirstName; target.LastName = employee.LastName; target.Title = employee.Title; target.Country = employee.Country; target.City = employee.City; context.Employees.AddObject(target); context.SaveChanges(); employee.EmployeeID = target.EmployeeID; } return Json(new[] { employee }.ToDataSourceResult(new DataSourceRequest(), ModelState)); }
/// <summary> /// Create a new Employee object. /// </summary> /// <param name="employeeID">Initial value of the EmployeeID property.</param> /// <param name="lastName">Initial value of the LastName property.</param> /// <param name="firstName">Initial value of the FirstName property.</param> public static Employee CreateEmployee(global::System.Int32 employeeID, global::System.String lastName, global::System.String firstName) { Employee employee = new Employee(); employee.EmployeeID = employeeID; employee.LastName = lastName; employee.FirstName = firstName; return employee; }
/// <summary> /// Deprecated Method for adding a new object to the Employees EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToEmployees(Employee employee) { base.AddObject("Employees", employee); }