// Por si queremos excluir algún campo //public string EditActividad([Bind(Exclude = "ActividadId")] Actividad actividad) //public string ([Bind(Exclude = "FechaAlta")]Actividad actividad) //{ // try // { // db.Entry<Actividad>(actividad).State = EntityState.Modified; // //db.Actividades.Add(actividad); // db.SaveChanges(); // return "OK"; // } // catch (Exception) // { // return "NOK"; // } //} protected override void Dispose(bool disposing) { if (disposing) { db.Dispose(); } base.Dispose(disposing); }
public void Dispose() { if (_context == null) { _context.Dispose(); } if (_mcContext == null) { _mcContext.Dispose(); } if (_maestrosContext == null) { _maestrosContext.Dispose(); } if (_clientesContext == null) { _clientesContext.Dispose(); } if (_facturacionContext == null) { _facturacionContext.Dispose(); } }