public ActionResult Create(Archivo archivoToCreate) { try { // TODO: Add insert logic here if (!ModelState.IsValid) { var query = _db.PersonaSet.Select(c => new { ID_PERSONA = c.ID_PERSONA, PRIMER_NOMBRE = c.PRIMER_NOMBRE + " " + c.PRIMER_APELLIDO }); ViewBag.ID_PERSONA = new SelectList(query.AsEnumerable(), "ID_PERSONA", "PRIMER_NOMBRE"); return View(archivoToCreate); } _db.AddToArchivoSet(archivoToCreate); _db.SaveChanges(); return RedirectToAction("Index"); } catch { return View(); } }
/// <summary> /// Método desusado para agregar un nuevo objeto al EntitySet ArchivoSet. Considere la posibilidad de usar el método .Add de la propiedad ObjectSet<T> asociada. /// </summary> public void AddToArchivoSet(Archivo archivo) { base.AddObject("ArchivoSet", archivo); }
/// <summary> /// Crear un nuevo objeto Archivo. /// </summary> /// <param name="iD_PERSONA">Valor inicial de la propiedad ID_PERSONA.</param> /// <param name="cOD_EMPLEADO">Valor inicial de la propiedad COD_EMPLEADO.</param> public static Archivo CreateArchivo(global::System.Int32 iD_PERSONA, global::System.Int32 cOD_EMPLEADO) { Archivo archivo = new Archivo(); archivo.ID_PERSONA = iD_PERSONA; archivo.COD_EMPLEADO = cOD_EMPLEADO; return archivo; }
public ActionResult Edit(int id, Archivo archivoToEdit) { try { // TODO: Add update logic here var originalArch = (from m in _db.ArchivoSet where m.COD_EMPLEADO == archivoToEdit.COD_EMPLEADO select m).First(); if (!ModelState.IsValid) return View(originalArch); _db.ApplyCurrentValues(originalArch.EntityKey.EntitySetName, archivoToEdit); _db.SaveChanges(); return RedirectToAction("Index"); } catch { return View(); } }