Unable to update a record in asp.net-core 2.2 c#

我的未来我决定 提交于 2020-01-24 12:42:33

问题


I am trying to update the record of an item as follows

[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Edit(int id, [Bind("Id,Label,Description,LessonId,Position,FileName,Format,Status")] Content content)
{
      if (id != content.Id)
      {
         return NotFound();
      }

      var existingContent = await _context.Contents.FindAsync(id).ConfigureAwait(false);

      if (existingContent == null)
      {
         return NotFound();
      }

      string fileToDelete = null;

      if (ModelState.IsValid)
      {
          try
          {

            if (Request.Form.Files["FileName"] != null)
            {
               IFormFile uploadedFile = Request.Form.Files["FileName"];
               var lesson_mimetype = uploadedFile.ContentType;

               string[] extensions = new string[] { ".jpeg", ".jpg", ".gif", ".png", ".mp4", ".mp3", ".pdf" };

               ResponseMsg fileTypeValidationMsg = FileUploadHelper.ValidateFileExtension(uploadedFile, extensions);

               if (!fileTypeValidationMsg.ResponseStatus)
               {
                   ModelState.AddModelError("FileName", fileTypeValidationMsg.ResponseDescription);
               }

               ResponseMsg filesizeValidationMsg = FileUploadHelper.ValidateFilesize(uploadedFile, 200);

               if (!filesizeValidationMsg.ResponseStatus)
               {
                   ModelState.AddModelError("FileName", filesizeValidationMsg.ResponseDescription);
               }

               if (content.Format == ResourceFormat.Text)
               {
                   string desiredUploadDirectory = "TextResources";

                   string lesson_file_name = await uploadHelper.SaveFileAsync(Request.Form.Files["FileName"], desiredUploadDirectory).ConfigureAwait(false);

                   existingContent.TextFileUrl = desiredUploadDirectory + "/" + lesson_file_name;
                   existingContent.FileName = lesson_file_name;
                   fileToDelete = existingContent.TextFileUrl;
                   }
                   else
                   {
                      string desiredUploadDirectory = "MultimediaResources";

                      string lesson_file_name = await uploadHelper.SaveFileAsync(Request.Form.Files["FileName"], desiredUploadDirectory).ConfigureAwait(false);

                      existingContent.MultiMediaFileUrl = desiredUploadDirectory + "/" + lesson_file_name;
                      existingContent.FileName = lesson_file_name;
                      fileToDelete = existingContent.MultiMediaFileUrl;
                   }

              }

              existingContent.LastUpdated = DateTime.Now;
              existingContent.Label = content.Label;
              existingContent.Description = content.Description;
              existingContent.LessonId = content.LessonId;
              existingContent.Position = content.Position;
              existingContent.Status = content.Status;
              existingContent.Format = content.Format;
              //_context.Update(existingContent); Now removed for the code to work

              await _context.SaveChangesAsync().ConfigureAwait(false);

              if (fileToDelete != null)
              {
                 System.IO.File.Delete(fileToDelete);
              }
                 return RedirectToAction(nameof(Index));
              }
              catch (Exception e)
              {
                 ModelState.AddModelError("", e.Message);
              }
       }

       ViewData["LessonId"] = new SelectList(_context.Lessons, "Id", "Label", content.LessonId);

       return View(content);
}

But the problem is that when I submit the form for the update, I get the following error message

The instance of entity type 'Content' cannot be tracked because another instance with the same key value for {'Id'} is already being tracked. When attaching existing entities, ensure that only one entity instance with a given key value is attached. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the conflicting key values.

I do not know how to resolve this. I will appreciate any guide please.


回答1:


In most cases, EF will automatically detect which fields need updating, having an update function in a context (that takes an entity) is a red flag to say you are trying to do something that is not required.

EF does a lot of things behind the scenes, so you don't have to think about them. This is one of them.

I suspect you read a really old blog about how someone 10 years ago had to do something to get EF to update a record.

Also, remove that update function from your context class, so that no-one else trips up on it.



来源:https://stackoverflow.com/questions/57255797/unable-to-update-a-record-in-asp-net-core-2-2-c-sharp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!