コード例 #1
0
        public async Task <IActionResult> Delete(int id, string rowversion)
        {
            var  rv     = System.Text.Encoding.Unicode.GetBytes(rowversion);
            bool result = _changeRequestRepository.DeleteChangeRequest(id, rv);

            if (result == false)
            {
                TempData["ConcurrencyErrorMessage"] = "Record " + id.ToString("D5") + " was modified "
                                                      + "by another user after you got the original value. Please click View to see "
                                                      + "the latest values, or click the Delete button again to continue deleting "
                                                      + "the record";
            }
            return(RedirectToAction("List"));
        }
コード例 #2
0
        public IActionResult Delete(int id)
        {
            bool result = _changeRequestRepository.DeleteChangeRequest(id);

            return(RedirectToAction("Index", "Home"));
        }