public async Task <ActionResult <cojStgPlanStgLink> > CreateItem(cojStgPlanStgLink newItem) { try { //check duplicate if (newItem.id != 0) { return(NoContent()); } // newItem.startDate = DateTime.Now.ToString(_culture); newItem.endDate = "31/12/9999 00:00:00"; _context.cojStgPlanStgLinks.Add(newItem); await _context.SaveChangesAsync(); newItem.idRef = newItem.id; //initial new item // var _item = await _context.cojStgPlanStgLinks.FindAsync (newItem.id); // _item.startDate = DateTime.Now.ToString (_culture); // _item.endDate = "31/12/9999 00:00:00"; // _item.idRef = newItem.id; // _context.Entry (_item).State = EntityState.Modified; // await _context.SaveChangesAsync (); return(CreatedAtAction(nameof(GetItem), new { id = newItem.id }, newItem)); } catch (Exception ex) { return(BadRequest(ex.Message)); } }
public async Task <IActionResult> UpdateItem(long id, cojStgPlanStgLink item) { try { if (id != item.id) { return(NoContent()); } //update endDate // var _item = await _context.cojStgPlanStgLinks.FindAsync (id); // // _item.startDate = DateTime.Now.ToString (_culture); // _item.endDate = DateTime.Now.ToString (_culture); // _context.Entry (_item).State = EntityState.Modified; // await _context.SaveChangesAsync (); // var _items = await _context.cojStgPlanStgLinks.Where (a => a.idRef == item.idRef && a.endDate == "31/12/9999 00:00:00").ToListAsync (); // foreach (var _itm in _items) { // var _item = await _context.cojStgPlanStgLinks.FindAsync (_itm.id); // _item.endDate = DateTime.Now.ToString (_culture); // _context.Entry (_item).State = EntityState.Modified; // await _context.SaveChangesAsync (); // } //Add new cojStgPlanStgLink _itemNew = new cojStgPlanStgLink { idRef = item.idRef, cojStgPlanId = item.cojStgPlanId, cojStgId = item.cojStgId, cojNationStgId = item.cojNationStgId, cojNationStgSectorId = item.cojNationStgSectorId, cojNationStgIssueId = item.cojNationStgIssueId, cojNationPlanId = item.cojNationPlanId, cojNationPlanStgId = item.cojNationPlanStgId, cojNationPlanGuildlineId = item.cojNationPlanGuildlineId, cojNationPlanGuildlineItemId = item.cojNationPlanGuildlineItemId, cojPolicyId = item.cojPolicyId, cojPolicyLevel1Id = item.cojPolicyLevel1Id, cojPolicyLevel2Id = item.cojPolicyLevel2Id // startDate = DateTime.Now.ToString (_culture), // endDate = "31/12/9999 00:00:00" }; _context.cojStgPlanStgLinks.Add(_itemNew); await _context.SaveChangesAsync(); return(Ok(_itemNew)); } catch (Exception ex) { return(BadRequest(ex.Message)); } }