public ActionResult Create(string tempPath)
        {
            var employee = new Employee();
               if (TryUpdateModel(employee))
            {
                if (!string.IsNullOrEmpty(tempPath))
                {
                    employee.Photo = System.IO.File.ReadAllBytes(tempPath);
                    System.IO.File.Delete(tempPath);
                }
                context.Employees.AddObject(employee);
                context.SaveChanges();
            }

            return Json(ModelState.ToDataSourceResult());
        }
 /// <summary>
 /// Deprecated Method for adding a new object to the Employees EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToEmployees(Employee employee)
 {
     base.AddObject("Employees", employee);
 }
 /// <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;
 }